woff 發表於 2014-9-14 17:06:06

Bootstrap 輪播

描述

在本教程中,您將看到如何使用 Bootstrap 創建輪播。這將幫您創建內容滑塊,圖像畫廊等等。


用法<div id="myCarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
    <div class="active item">…</div>
    <div class="item">…</div>
    <div class="item">…</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>所以,您把想要呈現的條目(比如 images)以循環順序放置在 "carousel-inner" div 中,通過 "<!-- Carousel nav -->" 創建條目的導航。它使用定制的 data 屬性 "data-slide" 來導航到上一個和下一個條目。

您必須在您要創建輪播的 HTML 文件引用 jquery.js 和 bootstrap-carousel.js 文件。

Bootstrap 輪播實例<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Twitter Bootstrap pager with next and previous example</title>
<meta name="description" content="Twitter Bootstrap pager with next and previous example">
<link href="/twitter-bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
margin: 50px;
}
</style>
</head>
<body>
<ul class="pager">
<li>
    <a href="#">Previous</a>
</li>
<li>
    <a href="#">Next</a>
</li>
</ul>
</body>
</html> 在線查看實例。

帶有 old 和 new 的翻頁實例<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Example of carousal with Twitter Bootstrap</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Example of carousal with Twitter Bootstrap version 2.0 from w3resource.com">
   <!-- Le styles -->
    <link href="twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet">
      <link href="twitter-bootstrap-v2/docs/assets/css/example-fixed-layout.css" rel="stylesheet">
    <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
    <!-->
      <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
    <!-->

    <!-- Le fav and touch icons -->
    <link rel="shortcut icon" href="twitter-bootstrap-v2/docs/examples/images/favicon.ico">
    <link rel="apple-touch-icon" href="twitter-bootstrap-v2/docs/examples/images/apple-touch-icon.png">
    <link rel="apple-touch-icon" sizes="72x72" href="twitter-bootstrap-v2/docs/examples/images/apple-touch-icon-72x72.png">
    <link rel="apple-touch-icon" sizes="114x114" href="twitter-bootstrap-v2/docs/examples/images/apple-touch-icon-114x114.png">
</head>

<body>

    <div class="navbar navbar-fixed-top">
      <div class="navbar-inner">
      <div class="container">
          <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
          </a>
          <a class="brand" href="#"><img src="/images/w3r.png" width="111" height="30" alt="w3resource logo" /></a>
          <div class="nav-collapse">
            <ul class="nav">
            <li class="active"><a href="#">Home</a></li>
            <li><a href="#about">About</a></li>
            <li><a href="#contact">Contact</a></li>
            </ul>
          </div><!--/.nav-collapse -->
      </div>
      </div>
    </div>

    <div class="container">
      <!-- Example row of columns -->
      <div class="row">
      <div class="span4">
          <h2>HTML5 and JS Apps</h2>
                  <p> </p>
          <div id="myCarousel" class="carousel slide">
                        <!-- Carousel items -->
                  <div class="carousel-inner">
            <div class="active item"><img src="/update-images/html5_logo.png" alt="HTML5 logo" width="500" height="99" /></div>
            <div class="item"><img src="/update-images/javascript-logo.png" alt="JS logo" width="500" height="99" /></div>
            <div class="item"><img src="/update-images/schema.png" alt="Schema.org logo" width="500" height="99" /></div>
                <div class="item"><img src="/update-images/json.gif" alt="JSON logo" width="500" height="99" /></div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>
</div>
</div>

      <hr>

      <footer>
      <p>c Company 2012</p>
      </footer>

    </div> <!-- /container -->

    <!-- Le javascript
    ================================================== -->
    <!-- Placed at the end of the document so the pages load faster -->
    <script src="twitter-bootstrap-v2/docs/assets/js/jquery.js"></script>
    <script src="twitter-bootstrap-v2/docs/assets/js/bootstrap-carousel.js"></script>


</body>
</html>在線查看實例。

使用 Javascript

您可以使用下面的 JavaScript 代碼來創建輪播。$('.carousel').carousel()下面是您可以使用的選項
•interval: 規定幻燈片輪換的等待時間,以毫秒為單位。值的類型為 number,默認值是 5000。如果為 false,輪播將不會自動開始循環。
•pause: 規定當鼠標停留在幻燈片區域即暫停輪播,鼠標離開即啟動輪播。值的類型為 string,默認值是 'hover'。

下面是您可以使用的輪播方法
•.carousel(options): 初始化輪播組件,接受一個可選的 object 類型的 options 參數,並開始幻燈片循環。$('.carousel').carousel({
interval: 2000 // in milliseconds
})•.carousel('cycle'): 從左到右循環各幀。$('.carousel').carousel('cycle');•.carousel('pause'): 停止輪播。$('#myCarousel').hover(function () {
$(this).carousel('pause')
}•.carousel(number): 將輪播定位到指定的幀上(幀下標以0開始,類似數組)。$("#carousel_nav").click(function(){
var item = 4;
$('#home_carousel').carousel(item);
return false;
}); •.carousel('prev'): 將輪播轉到上一幀。
•.carousel('next'): 將輪播轉到下一幀。

這裡有兩個事件用來增強輪播的功能。
•slide: 當 slide 實例方法被調用之後,此事件被立即觸發。
•slid: 當所有幻燈片播放完之後,此事件被觸發。

點擊這裡,下載本教程中使用到的所有 HTML、CSS、JS 和圖片文件。

刨个坑看 發表於 2015-4-30 16:26:04




知道了 ~~~
頁: [1]
查看完整版本: Bootstrap 輪播