原生js仿浏览器滚动条效果
2019/6/27 21:07:35
本文主要是介绍原生js仿浏览器滚动条效果,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
效果图:
代码如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>仿浏览器滚动条</title> <style type="text/css"> *{margin: 0;padding: 0;} #demo{width: 300px;height: 500px;border: 1px solid red;margin:100px;position:relative;overflow:hidden;} p{padding:5px 20px 5px 5px;font-size:26px;position:relative;} #scrll{width:18px;border-radius:18px;position:absolute;top:0;right:0;background:red;cursor:pointer;} </style> </head> <body> <div id="demo"> <p id="dp">我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容我是文字内容</p> <div id="scrll"></div> </div> </body> <script type="text/javascript"> (function(window){ function $(id){ return document.getElementById(id); }; // 获取对象 var dp = $("dp"),demo = $("demo"),scrll = $("scrll"); // 获取dp的长度 var dpHeight = dp.offsetHeight; // 获取demo的长度 var demoHeight = demo.offsetHeight; // 根据比值计算scrll的长度 var scrllHeight = demoHeight * demoHeight / dpHeight ; // 如果内容长度小于窗口长度,则滚动条不显示 if( dp.offsetHeight < demo.offsetHeight){ scrllHeight = 0; }; scrll.style.height = scrllHeight + "px"; // 获取滚动条和内容移动距离的比例 var bilu = ( dp.offsetHeight - demo.offsetHeight ) / (demo.offsetHeight - scrll.offsetHeight); // 滚动条滚动事件 scrll.onmousedown = function(event){ // event兼容性解决 // console.log(demo.offsetTop) var event = event || window.event; // 获取鼠标按下的页面坐标 // 滚动条滚动时只有top值改变,所有不需要获取pageX var pageY = event.pageY || event.clientY + document.documentElement.scrollTop; // 获取鼠标在scrll内的坐标 var scrllY = pageY - demo.offsetTop - scrll.offsetTop; // 给document绑定鼠标移动事件 document.onmousemove = function(event){ var event = event || window.event; // 获取鼠标移动时的坐标 var moveY = event.pageY || event.clientY + document.documentElement.scrollTop; // 获取滚动条的移动坐标 var trueY = moveY - scrllY - demo.offsetTop ; // 限制滚动条移动的范围 if( trueY < 0 ){ trueY = 0 ; }; if( trueY > demo.offsetHeight - scrll.offsetHeight ){ trueY = demo.offsetHeight - scrll.offsetHeight; }; scrll.style.top = trueY + "px"; //清除选中文字 window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty(); // 获取文字区域移动的距离 var dpY = trueY * bilu ; dp.style.top = - dpY + "px"; } }; // 鼠标抬起清除鼠标移动事件 document.onmouseup = function(){ document.onmousemove = null; } })(window) </script> </html>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持找一找教程网!
这篇关于原生js仿浏览器滚动条效果的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 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公共组件入门教程