可视内容区的高度 / 内容区的实际高度 = 滚动条的高度 / 滑道的高度
内容区距离顶部的距离 / (内容区的实际高度 - 可视内容区域的高度 ) = 滚动条距离顶部的距离 / ( 滑道的高度 - 滚动条的高度)
document.onmousewheel = function (e){
// e.wheelDelta < 0 //(-120) 向下
// e.wheelDelta > 0 //(120) 向上
}
//兼容 Firefox
document.addEventListener('domMouseScroll',function (e) {
// e.detail > 0 //(3) 滑轮向下滚动
// e.detail < 0 //(-3) 滑轮向上滚动
},false)
当滚轮向上运动时 --> 内容区向下运动
当滚轮向下运动时 --> 内容区向上运动
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>滚动条</title>
<style>
*{
padding: 0;
margin: 0;
}
html,body{
width: 100%;
height: 100%;
}
.wrapper{
position: absolute;
left: 50%;
top:50%;
transform: translate(-50%,-50%);
width: 800px;
height: 700px;
border: 1px solid #000;
}
.view_box{
position: absolute;
left: 100px;
top:50%;
transform: translateY(-50%);
width:600px;
height: 500px;
background-color: rgba(25, 25, 25,.7);
overflow: hidden;
}
.content{
position: absolute;
top: 0;
width: 100%;
background-color: #abcdef;
transition: all 0.016s linear;
}
.content div{
height: 100px;
background-color: #f40;
}
.bar_box{
position: absolute;
right: 90px;
top:50%;
transform: translateY(-50%);
height: 500px;
width: 4px;
border-radius: 2px;
background-color: rgba(25, 25, 25,.7);
overflow: hidden;
}
.bar{
position: absolute;
top:0;
height: 20px;
width: 100%;
border-radius:2px;
background-color: rgb(197, 179, 179);
transition: all 0.016s linear;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="view_box">
<div class="content">
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
<div>这是内容</div>
</div>
</div>
<div class="bar_box">
<div class="bar"></div>
</div>
</div>
<script>
var wrapper = document.getElementsByClassName('wrapper')[0];
//获取展示内容区的区域
var view_box = document.getElementsByClassName('view_box')[0];
//获取展示内容区的区域的大小
var view_box_height = view_box.offsetHeight;
//获取内容区
var content = document.getElementsByClassName('content')[0];
//获取内容区的实际高度
var content_height = content.offsetHeight;
//获取滑道
var bar_box = document.getElementsByClassName('bar_box')[0];
//获取滑道的高度
var bar_box_height = bar_box.offsetHeight;
//获取滚动条
var bar = document.getElementsByClassName('bar')[0];
//求 滚动条的高度
//当展示的内容区的大小刚好展示内容区域时,滚动条的高度就是滑道的高度
if(view_box_height / content_height < 1) {
bar.style.height = (view_box_height / content_height) * bar_box_height + 'px';
} else {
bar.style.height = bar_box_height + 'px';
}
//绑定事件(做兼容处理)
wrapper.onmousewheel = function (e){
// e.wheelDelta < 0 //(-120) 向下
// e.wheelDelta > 0 //(120) 向上
scrollRoll(e);
}
//兼容 Firefox
wrapper.addEventListener('DOMMouseScroll',function (e) {
// e.detail > 0 //(3) 滑轮向下滚动
// e.detail < 0 //(-3) 滑轮向上滚动
scrollRoll(e);
},false)
function scrollRoll (e) {
e = e || window.event;
if (e.detail > 0) {
down();
} else if (e.detail < 0) {
up();
}
if (e.wheelDelta > 0) {
up();
} else if (e.wheelDelta < 0) {
down();
}
}
//滑轮向下滚动
function down () {
var speed = 8;
if (bar.offsetTop >= bar_box_height - bar.offsetHeight) {
bar.style.top = bar_box_height - bar.offsetHeight + 'px';
//注意:内容区应该向上移动
content.style.top = - (content_height - view_box_height) + 'px';
} else {
bar.style.top = bar.offsetTop + speed + 'px';
content.style.top = - bar.offsetTop / (bar_box_height - bar.offsetHeight) * (content_height - view_box_height) + 'px';
}
}
//滑轮向上滚动
function up () {
var speed = 8;
if (bar.offsetTop <= 0) {
bar.style.top = 0 + 'px';
content.style.top = 0 + 'px';
} else {
bar.style.top = bar.offsetTop - speed + 'px';
content.style.top = - bar.offsetTop / (bar_box_height - bar.offsetHeight) * (content_height - view_box_height) + 'px';
}
}
</script>
</body>
</html>
BetterScroll 是一款重点解决移动端各种滚动场景需求的开源插件,有下列功能支持滚动列表,下拉刷新,上拉刷新,轮播图,slider等功能。better-scroll通过使用惯性滚动、边界回弹、滚动条淡入淡出来确保滚动的流畅。
基于webkit内容隐藏滚动条,核心代码是:overflow的值需要设置为auto或者scroll,然后设置::-webkit-scrollbar的display属性为none。当然也可以通过设置滚动条的宽度为0。
原生js获取滚动条在Y轴上的滚动距离、获取文档的总高度、获取浏览器视口的高度的方法实现,用于判断页面加载数据。
iScroll 是一款针对web app使用的滚动控件,它可以模拟原生IOS应用里的滚动列表操作,还可以实现缩放、拉动刷新、精确捕捉元素、自定义滚动条等功能。
把原有的滚动条隐藏,创建个新的滚动条,并拓展其宽度,达到隐藏的效果,而判断滚动条是否滚动,保存原有的滚动条到顶部的距离,看是否发生改变,做出相应的判断。
window.onscroll为滚轮监听,document.body.scrollTop||document.documentElement.scrollTop 写两个是为了兼容不同浏览器。固定位置的top要设为负值,原因不明,若为0则会跟上方有空隙。左右位置虽然是0也要设,不然若为不是100%宽度的内容会出现左右跳动。
这篇文章主要介绍使用js实现文字无间歇性上下滚动,一些网站的公告,新闻列表使用的比较多,感兴趣的小伙伴们可以参考一下
在前端开发中,需要获取浏览器滚动距离的需求,这篇文章主要讲解如何使用原生Js兼容实现获取浏览器获X轴,Y轴的滚动距离。并延伸扩展下我们一些不知道的js知识,希望对你有所帮助。
当页面特别长的时候,用户想回到页面顶部,必须得滚动好几次滚动键才能回到顶部,如果在页面右下角有个返回顶部的按钮,用户点击一下,就可以回到顶部,对于用户来说,是一个比较好的体验。
我们都知道,撸页面的时候当我们的内容超出了我们的div,往往会出现滚动条,影响美观。百度下大部分都是在说overflow:hidden或者overflow-y: no可以解决问题,但是并不能很好的解决我们的问题,那么怎么办呢?
内容以共享、参考、研究为目的,不存在任何商业目的。其版权属原作者所有,如有侵权或违规,请与小编联系!情况属实本人将予以删除!