您好,登錄后才能下訂單哦!
本文實例為大家分享了Bootstrap輪播圖效果展示的具體代碼,供大家參考,具體內容如下
聲明式觸發需要使用到的幾個data-*屬性
1.data-ride:作用在最外層容器上,固定值:carousel
2.data-target:作用在class=carousel-indicators的每個子元素li上面,標注對那個元素進行點擊輪播
3.data-slide:作用在前翻頁和后翻頁的兩個a鏈接上,prev表示前翻頁,next表示后翻頁
4.data-slide-to:作用在class=carousel-indicators的每個子元素li上面,標注對應的li元素對應的圖片動畫幀的下標,從0開始
5.data-interval:輪番圖自動輪播的等待時間,如果為false則不自動輪播,默認為5000ms
6.data-pause:指定鼠標停留在輪換圖上是否停止輪播,離開后繼續自動輪播
7.data-wrap:指定是否持續輪播
輪播圖代碼實現:
<!Doctype html> <html> <head> <title>登錄界面-bootstrap打造前端--美觀高大上-成兮制作</title> <!-- meta --> <meta http-equiv="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <!-- ICON Link --> <link rel="shorticon" type="image/x-icon" href="Images/webicon.ico" rel="external nofollow" rel="external nofollow" /> <link rel="icon" type='image/x-icon' href="Images/webicon.ico" rel="external nofollow" rel="external nofollow" /> <!--Bootstrap CSS Link--> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" rel="external nofollow" /> <link rel="stylesheet" href="bootstrap/css/bootstrap-theme.css" rel="external nofollow" /> <!-- Bootstrap JS and JQuery JS Link --> <script src="JS/jquery.min.js"></script> <script src="bootstrap/js/bootstrap.min.js"></script> </head> <body> <!-- 制作巨幕輪播圖 --> <div class="carousel" id="carouselcontainer" data-ride="carousel" > <ol class="carousel-indicators"> <li class="active" data-target="#carouselcontainer" data-slide-to="0"></li> <li data-target="#carouselcontainer" data-slide-to='1'></li> <li data-target="#carouselcontainer" data-slide-to="2"></li> <li data-target="#carouselcontainer" data-slide-to="3"></li> </ol> <div class="carousel-inner"> <div class="item active"> <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <img src="Images/1.png" title="巨幕輪播圖1" /> </a> </div> <div class="item"> <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <img src="Images/1.jpg" title="巨幕輪播圖2" /> </a> </div> <div class="item"> <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <img src="Images/2.jpg" title="巨幕輪播圖3" /> </a> </div> <div class="item"> <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <img src="Images/3.jpg" title="巨幕輪播圖4" /> </a> </div> </div> <div class="left carousel-control" href="#carouselcontainer" rel="external nofollow" rel="external nofollow" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> </div> <div class="right carousel-control" href="#carouselcontainer" rel="external nofollow" rel="external nofollow" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> </div> </div> </body> </html>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。