[html]
<div class="header">
<h2>Scroll Indicator</h2>
<div class="progress-container">
<div class="progress-bar" id="myBar"></div>
</div>
</div>
<div>Жила была компания и делала она классные продукты и были там крутые программисты. И все программисты хорошо оплачивались и многие были олимпиадниками. И страшно они не любили рутину и хотели всегда оставаться крутыми спецами без которых компания жить не может. И думали они как сделать так, чтобы работа всегда была интересной и сложной. И придумали они запретить использование комментариев в программе и всякая техническая документация была очень скудной. При этом программный код был жутко объектно-ориентированным и содержал множество наследований. И добились они своей цели и уровень зарплаты стал соответствовать сложности решаемых проблем.</div>
<style>
/* Style the header: fixed position (always stay at the top) */
.header {
position: fixed;
top: 0;
z-index: 1;
width: 100%;
background-color: #f1f1f1;
}
/* The progress container (grey background) */
.progress-container {
width: 100%;
height: 8px;
background: #ccc;
}
/* The progress bar (scroll indicator) */
.progress-bar {
height: 8px;
background: #4caf50;
width: 0%;
}
</style>
<script>
// When the user scrolls the page, execute myFunction
window.onscroll = function() {myFunction()};
function myFunction() {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.getElementById("myBar").style.width = scrolled + "%";
}</script>
[/html]
Создание индикатора прокрутки
Шаг 1) добавить HTML:
<div class="header"> <h2>Scroll Indicator</h2> <div class="progress-container"> <div class="progress-bar" id="myBar"></div> </div> </div> <div>ту много много content...</div>
Шаг 2) добавить CSS:
/* Style the header: fixed position (always stay at the top) */ .header { position: fixed; top: 0; z-index: 1; width: 100%; background-color: #f1f1f1; } /* The progress container (grey background) */ .progress-container { width: 100%; height: 8px; background: #ccc; } /* The progress bar (scroll indicator) */ .progress-bar { height: 8px; background: #4caf50; width: 0%; }
Шаг 3) добавить JavaScript:
// When the user scrolls the page, execute myFunction window.onscroll = function() {myFunction()}; function myFunction() { var winScroll = document.body.scrollTop || document.documentElement.scrollTop; var height = document.documentElement.scrollHeight - document.documentElement.clientHeight; var scrolled = (winScroll / height) * 100; document.getElementById("myBar").style.width = scrolled + "%"; }
- Подпись автора