效果预览
![图片[1]-子比主题-顶部彩色进度条](https://img.lovelu.top/wordpress/post/2023/10/caisejindutiao.png)
CSS代码
后台>>自定义css样式
#percentageCounter {
position: fixed;
left: 0;
top: 0;
height: 3px;
z-index: 99999;
background-image: url(https://img.lovelu.top/wordpress/resource/jindutiao.gif);
border-radius: 5px;
}
js代码
后台>>自定义javascript代码
$(window).scroll(function() {
var a = $(window).scrollTop(),
c = $(document).height(),
b = $(window).height();
scrollPercent = a / (c - b) * 100;
scrollPercent = scrollPercent.toFixed(1);
$("#percentageCounter").css({
width: scrollPercent + "%"
});
}).trigger("scroll");
php代码
感谢您的来访,获取更多精彩文章请收藏本站。

© 版权声明
THE END
暂无评论内容