常見的開發頁面中可能會有這麼一個需求,頁面中會有多個模塊,每一個模塊對應一個導航,當頁面滾動到某個模塊時,對應的模塊導航須要加上一個類用於區分當前用戶所瀏覽區域。html
假設結構以下:app
<div class="container"> <div class="wrapper"> <div class="section" id="section1">section1</div> <div class="section" id="section2">section2</div> <div class="section" id="section3">section3</div> <div class="section" id="section4">section4</div> <div class="section" id="section5">section5</div> </div> <nav> <a href="#section1" class="current">section1</a> <a href="#section2">section2</a> <a href="#section3">section3</a> <a href="#section4">section4</a> <a href="#section5">section5</a> </nav> </div>
js代碼以下:this
var $navs = $('nav a'), // 導航 $sections = $('.section'), // 模塊 $window = $(window), navLength = $navs.length - 1; $window.on('scroll', function() { var scrollTop = $window.scrollTop(), len = navLength; for (; len > -1; len--) { var that = $sections.eq(len); if (scrollTop >= that.offset().top) { $navs.removeClass('current').eq(len).addClass('current'); break; } } });
效果以下:
spa
不難看出,基本原理就是在window滾動的時候,依次將模塊從後向前遍歷,若是window的滾動高度大於或等於當前模塊的距頁面頂部的距離,則將當前模塊對應的導航突出顯示,而且再也不繼續遍歷code
除了這種需求外,還有另外一種需求,就是點擊導航定位到導航所對應模塊的頂部。htm
代碼以下:圖片
$navs.on('click', function(e) { e.preventDefault(); $('html, body').animate({ 'scrollTop': $($(this).attr('href')).offset().top }, 400); });
效果以下:
開發
以上基本上知足了業務的基本需求,這是工做中總結的經驗,僅供參考,有錯誤請指出,謝謝!rem