运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> body { height: 7500px; } button { position: fixed; } </style> </head> <body> <h1>The Window Object</h1> <h2>The scrollBy() Method</h2> <p>Click one of the buttons (multiple times) to scroll the document.</p> <p>Look at the scrollbar to see the effect.</p> <button onclick="scrollWin(0, 50)">Scroll down</button><br><br> <button onclick="scrollWin(0, -50)">Scroll up</button><br><br> <script> function scrollWin(x, y) { window.scrollBy(x, y); } </script> </body> </html>