子比主题-顶部彩色进度条

效果预览

图片[1]-子比主题-顶部彩色进度条

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
喜欢就支持一下吧
点赞483 分享
评论 共4条

请登录后发表评论