原生js实现顶部进度条效果
js
滚动
html
编程技术
发布日期
2023-07-15
更新日期
2023-07-15
阅读次数 59
文章字数 1.1k
页面滚动时,计算当前滚动的百分比。
然后设置顶部滚动条宽度的百分比
位置是fixed
<!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">
<style>
*{margin:0;padding:0;}
.box{height:3000px;width:100%;background:#ccc;}
.progress{position:fixed;top:0;height:5px;background-image: linear-gradient(to right, #339933,#FF6666);}
</style>
<title>原生js页面滚动顶部显示滚动总进度条效果</title>
</head>
<body>
<div class="progress"></div>
<div>
<div class="box">1</div>
</div>
</body>
<script>
(function(){
let pageHeight = document.body.scrollHeight || document.documentElement.scrollHeight; // 页面总高度
let windowHeight = document.documentElement.clientHeight || document.body.clientHeight; // 浏览器视口高度
let scrollAvail = pageHeight - windowHeight; // 可滚动的高度
console.log('可滚动的高度:', scrollAvail);
window.onscroll = function () {
let scrollTop = document.documentElement.scrollTop || document.body.scrollTop; // 获取滚动条的高度
console.log('滚动条的高度:', scrollTop);
document.querySelector('.progress').style.width = (scrollTop/scrollAvail)*100 + '%'; // 计算占比
};
}());
</script>
</html>
文章作者: 朱丰华
文章链接: https://smart.52dixiaowo.com/blog/post-444.html
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。
js
滚动
html
发表评论
相关推荐