基于Bootstrap實(shí)現(xiàn)圖片輪播效果

字號(hào):


    本文實(shí)例為大家分享了bootstrap圖片輪播效果的實(shí)現(xiàn)代碼,供大家參考,具體內(nèi)容如下
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- 上述3個(gè)meta標(biāo)簽*必須*放在最前面,任何其他內(nèi)容都*必須*跟隨其后! -->
    <title>圖片輪播_01</title>
    <!-- Bootstrap -->
    <link href="../bootstrap-3.3.5-dist/css/bootstrap.min.css" rel="stylesheet">
    <script src="../js/jquery-2.1.4.min.js"></script>
    <script src="../bootstrap-3.3.5-dist/js/bootstrap.min.js"></script>
    </head>
    <body>
    <!--
    作者:凱爾
    時(shí)間:2016-02-20
    描述:
    carousel
    date-interval="4000"停留時(shí)間/幅圖
    支持鍵盤左右方向鍵對(duì)圖片進(jìn)行輪播方向選擇
    -->
    <div>
    <div>
    <div id="carousel-example-generic">
    <ol>
    <li data-target="#carousel-example-generic" data-slide-to="0"></li>
    <li data-target="#carousel-example-generic" data-slide-to="1"></li>
    <li data-target="#carousel-example-generic" data-slide-to="2"></li>
    <li data-target="#carousel-example-generic" data-slide-to="3"></li>
    </ol>
    <div>
    <div>
    <img src="../img/圖片輪播/pic01.jpg" />
    </div>
    <div>
    <img src="../img/圖片輪播/pic02.jpg" />
    <!--
    圖片上要顯示的文字
    -->
    <div>
    <h3>聯(lián)想校園大使</h3></div>
    </div>
    <div>
    <img src="../img/圖片輪播/pic03.jpg" />
    </div>
    <div>
    <img src="../img/圖片輪播/pic04.jpg" />
    </div>
    </div>
    <!-- Controls -->
    <a href="#carousel-example-generic" role="button" data-slide="prev">
    <span aria-hidden="true"></span>
    <span>Previous</span>
    </a>
    <a href="#carousel-example-generic" role="button" data-slide="next">
    <span aria-hidden="true"></span>
    <span>Next</span>
    </a>
    </div>
    </div>
    </div>
    <!--設(shè)定時(shí)間間隔,通過JavaScript,這樣做相對(duì)于css屬性設(shè)定而言,可以自啟動(dòng),無需人為進(jìn)行干預(yù)-->
    <script>
    $(".carousel").carousel({
    interval: 4000
    })
    </script>
    </body>
    </html>
    以上就是本文的全部內(nèi)容,希望對(duì)大家學(xué)習(xí)javascript程序設(shè)計(jì)有所幫助。