javascript滚轮控制模拟滚动条
2019/6/27 21:42:07
本文主要是介绍javascript滚轮控制模拟滚动条,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
此实例通过对滚轮事件的监听,通过滚轮控制滚动条的上下移动,可以将其修改后运用与使用滚轮缩放图片、改变透明度等特效。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin: 0; padding: 0; } #boxwrap{ position: relative; width: 15px; height: 500px; margin: 50px auto; box-sizing: border-box; border: 1px solid gainsboro; border-radius: 6px; } #box{ position: absolute; left: 0px; top: 0px; width: 13px; height: 30px; background: gray; border-radius: 6px; } </style> <script type="text/javascript"> window.onload = function (){ var boxwrp = document.getElementById('boxwrap'); var box = document.getElementById('box'); //兼容firefox if(boxwrp.addEventListener){ document.addEventListener("DOMMouseScroll", fn, false); } document.onmousewheel = fn;//兼容IE、chrome function fn(ev){ var ev = ev||event; var bool = false; //IE、chrome 向上:120,向下:-120 if(ev.wheelDelta){ bool= ev.wheelDelta > 0? true : false; } //firefox 向上:-3,向下:3 else{ bool= ev.detail < 0? true : false; } if(bool){ if(box.offsetTop>=10){ box.style.top = box.offsetTop - 10 + "px"; } else{ box.style.top = 0; } } else{ if(box.offsetTop<=boxwrp.offsetHeight-box.offsetHeight-10){ box.style.top = box.offsetTop + 10 + "px"; } else{ box.style.top = boxwrp.offsetHeight - box.offsetHeight + "px"; } } } } </script> </head> <body> <div id="boxwrap"> <div id="box"></div> </div> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持找一找教程网。
这篇关于javascript滚轮控制模拟滚动条的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Vue新手入门教程:从零开始学习Vue框架
- 2024-11-23如何集成Ant Design Vue的图标
- 2024-11-23如何集成Ant Design Vue图标
- 2024-11-23使用vue CLI快速搭建Vue项目教程
- 2024-11-23Vue CLI多环境配置简单教程
- 2024-11-23Vue3入门教程:轻松搭建你的第一个Vue3应用
- 2024-11-23Vue3+Vite快速上手指南
- 2024-11-23Vue3阿里系UI组件入门指南
- 2024-11-23Vue3的阿里系UI组件入门指南
- 2024-11-23Vue3公共组件入门教程