reading progress indicator

Posted in: Newspaper
Post count: 90

I have some HTML, CSS,js code but reading progress indicator not work, please make a correct code and help me
HTML code<div id="progress"> </div>
CSS code #progress{
background-color: #F0005A;
heigh: 18px
width: 0%;
position: fixed;
top:0;
left:0;
}

CUSTOM JAVASCRIPT code window.onscroll = function(){
var pos = document.documentElement.scrollTop;
var calc_height = document.documentElement.scrollHeight-
document.documentElement.clientHeight;
var scroll = pos*100/calc_height;
document.genElementById("progress").style.width = scroll + "%" ;
}

Post count: 35449

Hi,

Please note that our theme does not have this option, also what you as is a custom work, this is not cover by theme support -> https://forum.tagdiv.com/support-policy-2/
Also you can use a plugin for this -> https://enginetemplates.com/top-9-best-wordpress-progress-bar-plugins-in-2020/

Thank you for your understanding!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.