欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時(shí)間:2016年05月22日 08:43:16   投稿:lijiao  
這篇文章主要為大家詳細(xì)介紹了基于bootstrap實(shí)現(xiàn)圖片輪播效果的相關(guān)資料,具有一定的參考價(jià)值,感興趣的朋友可以參考一下

本文實(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 class="container">
<div style="width:960px;height: 400px;margin: auto;padding: auto;">
<div id="carousel-example-generic" class="carousel slide">
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1" class=""></li>
<li data-target="#carousel-example-generic" data-slide-to="2" class=""></li>
<li data-target="#carousel-example-generic" data-slide-to="3" class=""></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="../img/圖片輪播/pic01.jpg" />
</div>
<div class="item">
<img src="../img/圖片輪播/pic02.jpg" />
<!--
圖片上要顯示的文字
-->
<div class="carousel-caption">
<h3>聯(lián)想校園大使</h3></div>
</div>
<div class="item">
<img src="../img/圖片輪播/pic03.jpg" />
</div>
<div class="item">
<img src="../img/圖片輪播/pic04.jpg" />
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">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>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家學(xué)習(xí)javascript程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • js變換顯示圖片的實(shí)例

    js變換顯示圖片的實(shí)例

    題意:在界面上有一張圖片,下面有四個(gè)單選按鈕,點(diǎn)擊每一個(gè)按鈕圖片變換成不同的圖片
    2013-04-04
  • three.js中聚光燈及其屬性介紹小結(jié)

    three.js中聚光燈及其屬性介紹小結(jié)

    本文主要介紹了three.js中聚光燈及其屬性介紹小結(jié),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-07-07
  • javascript import css實(shí)例代碼

    javascript import css實(shí)例代碼

    差點(diǎn)被FF下的insertRule給帶暈了. sheet.insertRule("@import url('aa.css');",sheet.cssRules.length);
    2008-07-07
  • javascript重寫alert方法的實(shí)例代碼

    javascript重寫alert方法的實(shí)例代碼

    最近因?yàn)樵趂lash項(xiàng)目中遇到as調(diào)用js函數(shù)馬上彈出alert,在火狐瀏覽器下會(huì)卡死瀏覽器。介于這樣我們重寫alert,讓alert彈出一個(gè)自定義的div彈層,來實(shí)現(xiàn)提示效果!
    2013-03-03
  • JS實(shí)現(xiàn)仿百度文庫評(píng)分功能

    JS實(shí)現(xiàn)仿百度文庫評(píng)分功能

    本文給大家分享基于js實(shí)現(xiàn)仿百度文庫評(píng)分功能,代碼簡(jiǎn)單易懂,非常不錯(cuò),具有參考借鑒價(jià)值,需要的的朋友參考下吧
    2017-01-01
  • 前端圖片懶加載的原理與3種實(shí)現(xiàn)方式舉例

    前端圖片懶加載的原理與3種實(shí)現(xiàn)方式舉例

    圖片懶加載又稱圖片延時(shí)加載、惰性加載,即在用戶需要使用圖片的時(shí)候加載,這樣可以減少請(qǐng)求,節(jié)省帶寬,提高頁面加載速度,相對(duì)的,也能減少服務(wù)器壓力,下面這篇文章主要給大家介紹了關(guān)于前端圖片懶加載的原理與3種實(shí)現(xiàn)方式的相關(guān)資料,需要的朋友可以參考下
    2023-03-03
  • 微信小程序 bindtap 傳參的實(shí)例代碼

    微信小程序 bindtap 傳參的實(shí)例代碼

    這篇文章主要介紹了微信小程序 bindtap 傳參的實(shí)例代碼,代碼簡(jiǎn)單易懂,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-02-02
  • js中異步函數(shù)async function變同步函數(shù)的簡(jiǎn)單入門

    js中異步函數(shù)async function變同步函數(shù)的簡(jiǎn)單入門

    這篇文章主要介紹了js中異步函數(shù)async function變同步函數(shù)的簡(jiǎn)單入門,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-04-04
  • javascript編寫實(shí)用的省市選擇器

    javascript編寫實(shí)用的省市選擇器

    這篇文章主要介紹了javascript編寫實(shí)用的省市選擇器的方法及示例分享,非常不錯(cuò),推薦給有相同需求的小伙伴們。
    2015-02-02
  • JavaScript實(shí)現(xiàn)隨機(jī)碼的生成與校驗(yàn)

    JavaScript實(shí)現(xiàn)隨機(jī)碼的生成與校驗(yàn)

    這篇文章主要為大家詳細(xì)介紹了JavaScript實(shí)現(xiàn)隨機(jī)碼的生成與校驗(yàn),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-04-04

最新評(píng)論