這篇文章分享給大家的內容是關於jquery和css3 如何實現航欄到底部上移(程式碼),內容很詳細,接下來我們就來看看具體的內容,希望可以幫助到有需要的朋友。
導覽列
.navigation { position: fixed; bottom: 100px; right: 100px; z-index: 100; }.navigation { transition: bottom 2s; -webkit-transition: bottom 2s; }
JQ程式碼
var nav = eval($('.navigation').offset().top - $(window).scrollTop()); $(window).on('scroll', function() { var navh = $('.navigation').height(); var foot = parseInt($('.footer').offset().top - $(this).scrollTop() - navh); /*console.log(nav - foot);*/ if(nav == foot || nav > foot) { $('.navigation').css({ 'position': 'fixed', 'bottom': '400px' }); } else { $('.navigation').css({ 'position': 'fixed', 'bottom': '100px' }); } });
相關推薦:
以上是jquery和css3 如何實現航欄到底部上移(代碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!