溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Javascript如何實現(xiàn)頁面滾動時導(dǎo)航智能定位

發(fā)布時間:2021-04-25 09:47:27 來源:億速云 閱讀:266 作者:小新 欄目:web開發(fā)

小編給大家分享一下Javascript如何實現(xiàn)頁面滾動時導(dǎo)航智能定位,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

Java有哪些集合類

Java中的集合主要分為四類:1、List列表:有序的,可重復(fù)的;2、Queue隊列:有序,可重復(fù)的;3、Set集合:不可重復(fù);4、Map映射:無序,鍵唯一,值不唯一。

常見的開發(fā)頁面中可能會有這么一個需求,頁面中會有多個模塊,每個模塊對應(yīng)一個導(dǎo)航,當頁面滾動到某個模塊時,對應(yīng)的模塊導(dǎo)航需要加上一個類用于區(qū)分當前用戶所瀏覽區(qū)域。

假設(shè)結(jié)構(gòu)如下:

<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" rel="external nofollow" class="current">section1</a>
    <a href="#section2" rel="external nofollow" >section2</a>
    <a href="#section3" rel="external nofollow" >section3</a>
    <a href="#section4" rel="external nofollow" >section4</a>
    <a href="#section5" rel="external nofollow" >section5</a>
  </nav>
</div>

頁面滾動時導(dǎo)航定位

js代碼如下:

var $navs = $('nav a'),          // 導(dǎo)航
  $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;
    }
  }
});

效果如下:

Javascript如何實現(xiàn)頁面滾動時導(dǎo)航智能定位

不難看出,基本原理就是在window滾動的時候,依次將模塊從后向前遍歷,如果window的滾動高度大于或等于當前模塊的距頁面頂部的距離,則將當前模塊對應(yīng)的導(dǎo)航突出顯示,并且不再繼續(xù)遍歷

點擊導(dǎo)航定位頁面

除了這種需求外,還有另一種需求,就是點擊導(dǎo)航定位到導(dǎo)航所對應(yīng)模塊的頂部。

代碼如下:

$navs.on('click', function(e) {
  e.preventDefault();
  $('html, body').animate({
    'scrollTop': $($(this).attr('href')).offset().top
  }, 400);
});

效果如下:

Javascript如何實現(xiàn)頁面滾動時導(dǎo)航智能定位

看完了這篇文章,相信你對“Javascript如何實現(xiàn)頁面滾動時導(dǎo)航智能定位”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI