aluckyanov 2 Posted February 22, 2018 Report Share Posted February 22, 2018 Подскажите скрипт, который будет показывать начало и конец страницы и размещаться в самом вверху сайта. Видел на многих сайтах. Прокручиваешь страницу вверх и вверху страницы есть полосочка, которая показывает (как бы загрузкой) Идентификатор прокрутки страницы. Quote Link to post Share on other sites
xmka 14 Posted February 22, 2018 Report Share Posted February 22, 2018 Тут все просто: HTML <div class="longpage"></div> CSS .longpage { height: 5px; position: fixed; top: 0; background-color: $color-blue; z-index: 100; } JS $(window).on("scroll", function () { var wh = $(window).height(), wst = $(window).scrollTop(), dh = $(document).height(), w = 0; if(wst < wh){ w = wst * 100 / dh; }else{ w = (wh + wst) * 100 / dh; } $(".longpage").css({ "width" : w + "%" }); }); Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.