Липкие блоки на jQuery by Apocalypse
1 2 3 4 5 6 |
.apostick { position: fixed; margin-top: 0px!important; z-index: 1; top: 0px; } |
1 2 3 |
<div class="apoparent"> <div id="aposticky">Я - липкий блок<br /><br />Прокрути страницу вниз</div> </div> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<script> $(function() { var ae = $('#aposticky'); // id элемента, который нужно прилепить var ao = ae.offset(); document.onscroll = function() { if(ao.top <= $(window).scrollTop()) { ae.addClass('apostick'); } else { ae.removeClass('apostick'); }; }; }); // imapo.ru (c) 2016 </script> |