运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <style> #section1 { height: 600px; background-color: pink; } #section2 { height: 600px; background-color: yellow; } </style> <body> <h1>Smooth Scroll</h1> <p>Click on the links inside the pink and yellow DIVs before you click on the "Apply smooth scroll effect" button - to see the effect before and after applying the smooth scroll effect.</p> <button onclick="myFunction()">Apply smooth scroll effect</button> <div class="main" id="section1"> <h2>Section 1</h2> <a href="#section2">Click Me to Go to Section 2 Below</a> </div> <div class="main" id="section2"> <h2>Section 2</h2> <a href="#section1">Click Me to Go to Section 1 Above</a> </div> <script> function myFunction() { document.documentElement.style.scrollBehavior = "smooth"; } </script> </body> </html>