Bootstrap学习js插件篇之滚动监听

1、滚动监听

 

案例

 

滚动监听插件可以根据滚动条的位置自动更新所对应的导航标记。Bootstrap中文网左侧就是一个滚动监听的例子。

代码段:

 

  1. <nav id="navbar-example2" class="navbar navbar-default navbar-static" role="navigation">  
  2.             <div class="navbar-header">  
  3.             <button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-js-navbar-scrollspy">  
  4.                 <span class="sr-only">Toggle-navigation</span>  
  5.                 <span class="icon-bar"></span>  
  6.                 <span class="icon-bar"></span>  
  7.                 <span class="icon-bar"></span>  
  8.             </button>  
  9.             <href="#" class="navbar-brand">Project Name</a>  
  10.             </div>  
  11.             <div class="collapse navbar-collapse bs-js-navbar-scrollspy">  
  12.             <ul class="nav navbar-nav">  
  13.                 <li><href="#fat">@fat</a></li>  
  14.                 <li><href="#mdo">@mdo</a></li>  
  15.                   
  16.                 <li class="dropdown">  
  17.                     <href="#" id="navbarDrop1" class="dropdown-toggle" data-toggle="dropdown">Dropdown  
  18.                     <class="caret"></b></a>  
  19.                     <ul class="dropdown-menu" role="menu" aria-labelledby="navbarDrop1">  
  20.                         <li><href="#one" tabindex="-1">one</a></li>  
  21.                         <li><href="#two" tabindex="-1">two</a></li>  
  22.                         <li class="divider"></li>  
  23.                         <li><href="#three" tabindex="-1">three</a></li>  
  24.                     </ul>  
  25.                 </li>  
  26.                   
  27.             </ul>  
  28.             </div>  
  29.               
  30.         </nav>  
  1. <div class="scrollspy-example" data-target="#navbar-example2" data-offset="0" data-spy="scroll">  
  2. <span style="white-space:pre">          </span<h4 id="fat">@fat</h4>  
  3.         <p>Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan mcsweeney‘s photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim qui you probably haven‘t heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic. Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.</p>  
  4.         <h4 id="mdo">@mdo</h4>  
  5.         <p>Veniam marfa mustache skateboard, adipisicing fugiat velit pitchfork beard. Freegan beard aliqua cupidatat mcsweeney‘s vero. Cupidatat four loko nisi, ea helvetica nulla carles. Tattooed cosby sweater food truck, mcsweeney‘s quis non freegan vinyl. Lo-fi wes anderson +1 sartorial. Carles non aesthetic exercitation quis gentrify. Brooklyn adipisicing craft beer vice keytar deserunt.</p>  
  6.         <h4 id="one">one</h4>  
  7.         <p>Occaecat commodo aliqua delectus. Fap craft beer deserunt skateboard ea. Lomo bicycle rights adipisicing banh mi, velit ea sunt next level locavore single-origin coffee in magna veniam. High life id vinyl, echo park consequat quis aliquip banh mi pitchfork. Vero VHS est adipisicing. Consectetur nisi DIY minim messenger bag. Cred ex in, sustainable delectus consectetur fanny pack iphone.</p>  
  8.         <h4 id="two">two</h4>  
  9.         <p>In incididunt echo park, officia deserunt mcsweeney‘s proident master cleanse thundercats sapiente veniam. Excepteur VHS elit, proident shoreditch +1 biodiesel laborum craft beer. Single-origin coffee wayfarers irure four loko, cupidatat terry richardson master cleanse. Assumenda you probably haven‘t heard of them art party fanny pack, tattooed nulla cardigan tempor ad. Proident wolf nesciunt sartorial keffiyeh eu banh mi sustainable. Elit wolf voluptate, lo-fi ea portland before they sold out four loko. Locavore enim nostrud mlkshk brooklyn nesciunt.</p>  
  10.         <h4 id="three">three</h4>  
  11.         <p>Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan mcsweeney‘s photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim qui you probably haven‘t heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic. Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.</p>  
  12.         <p>Keytar twee blog, culpa messenger bag marfa whatever delectus food truck. Sapiente synth id assumenda. Locavore sed helvetica cliche irony, thundercats you probably haven‘t heard of them consequat hoodie gluten-free lo-fi fap aliquip. Labore elit placeat before they sold out, terry richardson proident brunch nesciunt quis cosby sweater pariatur keffiyeh ut helvetica artisan. Cardigan craft beer seitan readymade velit. VHS chambray laboris tempor veniam. Anim mollit minim commodo ullamco thundercats.  
  13.         </p>  
  14. <span style="white-space:pre">      </span></div>  

预览:

 

 

用法

通过data属性

 

通过为需要监听的页面元素(一般是<body>)添加data-spy="scroll"就可很轻松的为顶部导航条添加滚动监听功能。然后为其添加data-target属性,此属性的值为任何Bootstrap中.nav组件的父元素的ID或class。

<body data-spy="scroll" data-target=".navbar-example">
  ...
  <div class="navbar-example">
    <ul class="nav nav-tabs">
      ...
    </ul>
  </div>
  ...
</body>

通过JavaScript

通过JavaScript启动滚动监听:

$(‘body‘).scrollspy({ target: ‘.navbar-example‘ })

导航链接地址必须有对应的目标

导航条内的链接地址必须有对应的页面元素具有同样的ID值。例如,<a href="#home">home</a>必须对应DOM中例如<div id="home"></div>

方法

.scrollspy(‘refresh‘)

使用滚动监听插件时,每当页面中从DOM中增加或删除页面元素时,都需要调用此方法以,如下:

$(‘[data-spy="scroll"]‘).each(function () {
  var $spy = $(this).scrollspy(‘refresh‘)
})

 

 

选项

 

可以将选项通过data属性或JavaScript传递。对于data属性,需要将选项名称放到data-之后,例如data-offset=""

名称类型默认值描述
offset number 10 Pixels to offset from top when calculating position of scroll.

事件

事件类型描述
activate.bs.scrollspy 当滚动监听插件将某个元素置为active时,此事件被触发。
$(‘#myScrollspy‘).on(‘activate.bs.scrollspy‘, function () {
  // do something…
})

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。