W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
插件描述:jquery.caroursel.js是一款非常實(shí)用的可自動(dòng)輪播的jQuery旋轉(zhuǎn)木馬插件。該旋轉(zhuǎn)木馬將圖片進(jìn)行堆疊,輪流的將圖片推送到最前面來展示,形成旋轉(zhuǎn)木馬的效果。
該jQuery旋轉(zhuǎn)木馬插件需要引入jQuery,jquery.carousel.js文件。
<script src="js/jquery.min.js"></script>
<script src="js/jquery.carousel.js"></script>
該jQuery旋轉(zhuǎn)木馬插件使用一個(gè)<div>來作為包裹元素,在它里面是一個(gè)無序列表,用于放置圖片,以及兩個(gè)作為前后導(dǎo)航按鈕的<div>元素。
<div class="caroursel rotator-demo">
<ul class="rotator-list">
<li class="rotator-item"><img src="image/1.jpg"></li>
<li class="rotator-item"><img src="image/2.jpg"></li>
<li class="rotator-item"><img src="image/3.jpg"></li>
</ul>
<div class="rotator-btn rotator-prev-btn"></div>
<div class="rotator-btn rotator-next-btn"></div>
</div>
圖片的數(shù)量需要為奇數(shù)張,否則顯示會(huì)有一些異常,這是該插件的一個(gè)小bug。
你需要為該旋轉(zhuǎn)木馬特效添加下面的一些必要的CSS樣式。
.rotator-main {
position: relative;
width: 900px;
height: 400px
}
.rotator-main a, .rotator-main img { display: block; }
.rotator-main .rotator-list {
width: 900px;
height: 400px
}
.rotator-main .rotator-list .rotator-item {
position: absolute;
left: 0px;
top: 0px
}
.rotator-main .rotator-btn {
position: absolute;
height: 100%;
width: 100px;
top: 0px;
z-index: 10;
opacity: 0;
}
.rotator-main .rotator-prev-btn {
left: 0px;
background: url("../image/btn_l.png") no-repeat center center;
background-color: red
}
.rotator-main .rotator-next-btn {
right: 0px;
background: url("../image/btn_r.png") no-repeat center center;
background-color: red
}
在頁面DOM元素加載完畢之后,可以通過下面的方法來初始化該旋轉(zhuǎn)木馬插件。
Caroursel.init($('.caroursel'))
如果你需要自定義一些參數(shù),可以在頂層<div>元素中設(shè)置data-setting屬性。
<div class="caroursel rotator-main"
data-setting = '{
"width":1000, //旋轉(zhuǎn)木馬的寬度
"height":270, //旋轉(zhuǎn)木馬的高度
"posterWidth":640, //當(dāng)前顯示的圖片的寬度
"posterHeight":270, //當(dāng)前顯示的圖片的高度
"scale":0.8, //縮放值
"algin":"middle", //對(duì)齊方式
"speed":"1000", //動(dòng)畫速度
"isAutoplay":"true", //自動(dòng)播放
"dealy":"1000" //延遲時(shí)間
}'>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: