jQuery 完成一个文章浏览进度条功用

背景

浏览进度虽然没啥详细的用途,然则我倏忽想起来了,随意做做也是极好的 🙂
猎取元素 offset 高度、元素高度、滑动间隔就可以完成了

代码

var content_offtop = $('.article-content').offset().top;
var content_height = $('.article-content').innerHeight();
$(window).scroll(function () {
 if (($(this).scrollTop() > content_offtop)) { //滑动到内容部份
 if (($(this).scrollTop() - content_offtop) <= content_height) { //在内容部份内滑动
 this.reading_p = Math.round(($(this).scrollTop() - content_offtop) / content_height * 100);
 } else { //滑出内容部份
 this.reading_p = 100; //确保进度条铺满
 }
 } else { //未滑到内容部份
 this.reading_p = 0; //确保进度条不显现
 }
 $('.reading-bar').css('width', this.reading_p + '%');
});

↑ JavaScript 代码

    原文作者:TonyHe
    原文地址: https://segmentfault.com/a/1190000018938401
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞