精品伊人久久大香线蕉,开心久久婷婷综合中文字幕,杏田冲梨,人妻无码aⅴ不卡中文字幕

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
js定位html頁面某個div
<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>
?頁面滾動定位導航:
?頁面滾動時導航定位
?
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;
    }
  }
});
點擊導航定位頁面DIV:
?方式一:
?
$navs.on('click', function(e) {
  e.preventDefault();
  $('html, body').animate({
    'scrollTop': $($(this).attr('href')).offset().top
  }, 400);
});

?方式2:(我的項目使用)
? $navs.on('click', function (e) {
                e.preventDefault();
               $($(this).attr('href'))[0].scrollIntoView();
            });
?
本站僅提供存儲服務,所有內容均由用戶發布,如發現有害或侵權內容,請點擊舉報
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
使用JSP實現簡單的用戶登錄注冊頁面示例代碼解析
織夢頂級導航指定欄目如何單獨調用
固定顯示在頁面上方
jQuery+AJAX實現無刷新下拉加載更多
可控的縱向圖片滾動
分章節錨點“回到頂部”動畫特效
更多類似文章 >>
生活服務
分享 收藏 導長圖 關注 下載文章
綁定賬號成功
后續可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點擊這里聯系客服!

聯系客服

主站蜘蛛池模板: 平乡县| 慈利县| 五原县| 白水县| 日土县| 澎湖县| 孝昌县| 金阳县| 镇宁| 女性| 敦煌市| 潮安县| 惠安县| 庆元县| 城市| 鹿邑县| 郎溪县| 龙泉市| 乌兰县| 台江县| 如皋市| 道真| 利川市| 鄂尔多斯市| 乐安县| 合作市| 宜春市| 镇巴县| 闽侯县| 东源县| 阳泉市| 黔西| 古交市| 荥阳市| 河间市| 郓城县| 都匀市| 台北县| 鄂伦春自治旗| 江油市| 清原|