博客列表 >JS缓冲运动案例:右下角悬浮窗

JS缓冲运动案例:右下角悬浮窗

拾一枝樱花的博客
拾一枝樱花的博客原创
2022年07月19日 13:07:22457浏览
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>JS小案例:右侧缓冲悬浮框</title>
  6. <style>
  7. body {
  8. height: 2000px;
  9. margin: 0px;
  10. }
  11. #div1 {
  12. width: 100px;
  13. height: 150px;
  14. background: red;
  15. position: absolute;
  16. right: 0;
  17. bottom: 0;
  18. }
  19. </style>
  20. <script>
  21. window.onscroll = function () {
  22. var oDiv = document.getElementById('div1');
  23. startMove();
  24. }
  25. var timer = null;
  26. function startMove() {
  27. var oDiv = document.getElementById('div1');
  28. clearInterval(timer);
  29. timer = setInterval(function () {
  30. var scrollTop = document.documentElement.scrollTop||document.body.scrollTop;
  31. var iTarget = document.documentElement.clientHeight - oDiv.offsetHeight + scrollTop;
  32. var speed = (iTarget - oDiv.offsetTop) / 4;
  33. speed = speed > 0 ? Math.ceil(speed) : Math.floor(speed);
  34. if (oDiv.offsetTop == iTarget) {
  35. clearInterval(timer);
  36. } else {
  37. oDiv.style.top =oDiv.offsetTop +speed+ 'px';
  38. }
  39. }, 30)
  40. }
  41. </script>
  42. </head>
  43. <body>
  44. <div id='div1'></div>
  45. </body>
  46. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议