js中如何自定义滚动条(附代码)

本篇文章给大家带来的内容是关于js中如何自定义滚动条(附代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

鼠标滚轮事件

FireFox : DOMMouseScroll

e.detail   向下滚动为 3     向上滚动 -3

非FireFox : onmousewheel

e.wheelDelta  向下滚动-120     向上滚动120

自定滚动条源码

nbsp;html>                    * {            margin: 0;                        padding: 0;                    }        html,                    body {                        width: 100%;                                    height: 100%;                          }        #box {            width: 100%;                        height: 100%;                        overflow: hidden;                    }        .ball {                        width: 100%;                                    height: 500px;                        }        #scroll {                            width: 6px;                                        height: 96%;                                        position: fixed;                                        top: 2%;                                        right: 5px;                                       border-radius: 3px;                                        background-color: rgba(235, 233, 233, 0.5);                                        z-index: 9998;                                        opacity: 1;                         }        #scrollBar {                              position: absolute;                                          z-index: 9999;                                          width: 6px;                                          height: 20px;                                          border-radius: 3px;                                          left: 0;                                          top: 0;                                          background-color: #383838;                             }              
        
            

            

            

            

            

            

        
    
    
        
    
var content = document.getElementById("content"); var box = document.getElementById("box"); var scroll = document.getElementById("scroll"); var scrollBar = document.getElementById("scrollBar"); var data = 30; // 浏览器的可视高度减/页面的总高度*滚动栏的总高度=滚动按钮的高度 var _eight; window.onresize = function (){ init(); } function init (){ _height = window.innerHeight * scroll.offsetHeight / content.offsetHeight; scrollBar.style.height = _height + "px"; } init(); //火狐 box.addEventListener("DOMMouseScroll", function (e) { var e = e || event; if (e.detail > 0) {//向下滚动 box.scrollTop += data; } else {//向上滚动 box.scrollTop -= data; } //浏览器的滚动距离/(页面的总高度-浏览器的可视高度)* (滚动栏的总高度-滚动按钮的高度)= 滚动的距离 var _top = box.scrollTop * (scroll.offsetHeight - scrollBar.offsetHeight) / (content.offsetHeight - window.innerHeight); scrollBar.style.top = _top + "px"; }); //非火狐 box.addEventListener("mousewheel", function (e) { var e = e || event; if (e.wheelDelta > 0) {//向上滚动 box.scrollTop -= data; } else {//向下滚动 box.scrollTop += data; } //浏览器的滚动距离/(页面的总高度-浏览器的可视高度)* (滚动栏的总高度-滚动按钮的高度)= 滚动的距离 var _top = box.scrollTop * (scroll.offsetHeight - scrollBar.offsetHeight) / (content.offsetHeight - window.innerHeight); scrollBar.style.top = _top + "px"; });

登录后复制

相关推荐:

JS实现的页面自定义滚动条效果_javascript技巧

原生js封装自定义滚动条的代码案例分享

以上就是js中如何自定义滚动条(附代码)的详细内容,更多请关注【创想鸟】其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2742664.html

(0)
上一篇 2025年3月8日 02:51:56
下一篇 2025年3月6日 13:08:25

AD推荐 黄金广告位招租... 更多推荐

相关推荐

发表回复

登录后才能评论