Jump to content

andi25

Newbie
  • Posts

    5
  • Joined

  • Last visited

Everything posted by andi25

  1. в моем случай лучше определить высоту из #wrapper но я в js пока что ничего не понимаю..( <script type="text/javascript"> function getOffsetScreen() { var wwidth=(window.innerWidth) ? window.innerWidth : ((document.all) ? document.body.offsetWidth : null); var wheight=(window.innerHeight) ? window.innerHeight : ((document.all) ? document.body.offsetHeight : null); return {'width':wwidth,'height':wheight}; } </script> <script type="text/javascript"> var menu = document.getElementById('menu'); window.onscroll = function(){ var scroll = document.documentElement.scrollTop || document.body.scrollTop; if(scroll < document.body.offsetHeight){ menu.style.position = 'fixed'; menu.style.bottom = '0px'; }else{ menu.style.position = 'absolute'; menu.style.bottom = '135px'; } } </script> помогите пожалуйста
  2. Спасибо, но ведь высота у всех страниц разная
  3. вы меня поняли?)
  4. у меня есть блок прижатый к низу страницы position: fixed; bottom:0; мне надо чтоб внизу браузера он остановился на bottom:135px
  5. подскажите пожалуйста а как прижать к низу сайта? попробовал поменять все top на bottom но не работает( <script type="text/javascript"> var menu = document.getElementById('menu'); window.onscroll = function(){ var scroll = document.documentElement.scrollBottom || document.body.scrollBottom; if(scroll >= 200){ menu.style.position = 'fixed'; menu.style.bottom = 0 + 'px'; }else { if(scroll < 200){ menu.style.position = 'absolute'; menu.style.bottom = 200 + 'px'; } } } </script>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy