练习1_返回顶部.html 827 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. height: 1000px;
  10. width: 500px;
  11. border:4px dashed red;
  12. }
  13. .btn{
  14. position: fixed;
  15. right: 0;
  16. bottom: 0;
  17. font-size: 40px;
  18. font-weight: bolder;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <!-- relative absolute fixed-->
  24. <div class="box"></div>
  25. <div class="btn"> 返回顶部 </div>
  26. <script>
  27. var oBtn = document.getElementsByClassName("btn")[0];
  28. // oBtn = oBtn[0];
  29. console.log(oBtn);
  30. oBtn.onclick = function(){
  31. window.scrollTo(0,0);
  32. }
  33. </script>
  34. </body>
  35. </html>