最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

js圖片輪播插件的封裝

來(lái)源:懂視網(wǎng) 責(zé)編:小OO 時(shí)間:2020-11-27 22:34:24
文檔

js圖片輪播插件的封裝

本文為大家分享了js圖片輪播插件的具體代碼,供大家參考,具體內(nèi)容如下:我封裝的這個(gè)輪播插件只需要獲取到圖片和按鈕就可以啦。css 樣式;,0,0,0.3);} .left{ left: 0;background: url('../img/left.png') no-repeat center center;} .right{ right: 0;background: url('../img/right.png') no-repeat center center;}。頁(yè)面結(jié)構(gòu) html 代碼。
推薦度:
導(dǎo)讀本文為大家分享了js圖片輪播插件的具體代碼,供大家參考,具體內(nèi)容如下:我封裝的這個(gè)輪播插件只需要獲取到圖片和按鈕就可以啦。css 樣式;,0,0,0.3);} .left{ left: 0;background: url('../img/left.png') no-repeat center center;} .right{ right: 0;background: url('../img/right.png') no-repeat center center;}。頁(yè)面結(jié)構(gòu) html 代碼。

本文為大家分享了js圖片輪播插件的具體代碼,供大家參考,具體內(nèi)容如下

我封裝的這個(gè)輪播插件只需要獲取到圖片和按鈕就可以啦。

css 樣式

.body{
 width: 700px;
 margin: 100px auto;
 position: relative;
 height: 300px;
 overflow: hidden;
 }
 .body img{
 width: 700px;
 position: absolute;
 display: none;
 }
 .body ul{
 position: absolute;
 bottom: 3px;
 left: 50%;
 transform: translateX(-50%);

 }
 .body li{
 list-style: none;
 float: left;
 width: 15px;
 height: 15px;
 border-radius: 50px;
 background: none;
 border: 2px solid #fff;
 margin-right: 10px;
 cursor: pointer;
 }
 .active{
 background-color: #fff !important;

 }
 .body a{
 text-decoration: none;
 position: absolute;
 display: block;
 top: 50%;
 transform: translateY(-50%);
 height: 50px;
 width: 30px;
 background-size: 100% 60%;
 background-color: rgba(0,0,0,0.3);
 }
 .left{
 left: 0;
 background: url('../img/left.png') no-repeat center center;
 }
 .right{
 right: 0;
 background: url('../img/right.png') no-repeat center center;
 }

頁(yè)面結(jié)構(gòu) html 代碼

<body>
 <div class="body">
 <img src="img/1.jpg">
 <img src="img/2.jpg">
 <img src="img/3.jpg">

<ul>
 <li class="active"></li>
 <li></li>
 <li></li>
 </ul>
 <a href="javascript:;" class="left"></a>
 <a href="javascript:;" class="right"></a>
 </div>

js部分,插件調(diào)用

<script type="text/javascript" src="js/jquery-1.8.0.min.js"></script>
 <script type="text/javascript" src="js/slider.js"></script>
 <script type="text/javascript">
 $.slider({
 imgElement:$(".body img"),
 liElement:$(".body li"),
 leftBtn:$(".left"),
 rightBtn:$(".right"),
 time:2000
 })
</script>

封裝的插件

(function($){
 function slider(options){
 this.opts=$.extend({},slider.defaluts,options);
 this._imgSlider();
 }
 //設(shè)置默認(rèn)值
 slider.defaluts={
 imgElement:null,
 liElement:null,
 leftBtn:null,
 rightBtn:null,
 time:2000
 }
 slider.prototype._imgSlider=function(){
 var opts=this.opts,
 index=0,
 len=opts.imgElement.length,
 timeInter=null;
 if(opts.imgElement=='') return;
 opts.imgElement.eq(0).show();
 showTime();
 //當(dāng)鼠標(biāo)經(jīng)過(guò) 輪播停止,移開繼續(xù)
 opts.imgElement.hover(function() {
 clearInterval(timeInter);
 }, function() {
 showTime();
 });

 //點(diǎn)擊li 顯示對(duì)應(yīng)的圖片
 opts.liElement.click(function(){
 var id=$(this).index();
 show(id);
 });
 //向左向右
 opts.leftBtn.click(function(){
 clearInterval(timeInter);
 --index;
 index=Math.max(0,index);
 show(index);
 showTime();
 });
 opts.rightBtn.click(function(){
 clearInterval(timeInter);
 ++index;
 index=Math.min(len-1,index);
 show(index);
 showTime();
 });


 function showTime(){
 timeInter=setInterval(function(){
 index++;
 if(index>len){
  index=0;
 }
 show(index);
 },opts.time);
 }
 function show(index){
 opts.imgElement.eq(index).fadeIn(1000).siblings('img').fadeOut(1000);
 opts.liElement.eq(index).addClass('active').siblings('li').removeClass('active');
 }

 }
 $.extend({
 slider:function(options){
 new slider(options);
 }
 })
})(jQuery)


效果圖

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

js圖片輪播插件的封裝

本文為大家分享了js圖片輪播插件的具體代碼,供大家參考,具體內(nèi)容如下:我封裝的這個(gè)輪播插件只需要獲取到圖片和按鈕就可以啦。css 樣式;,0,0,0.3);} .left{ left: 0;background: url('../img/left.png') no-repeat center center;} .right{ right: 0;background: url('../img/right.png') no-repeat center center;}。頁(yè)面結(jié)構(gòu) html 代碼。
推薦度:
標(biāo)簽: 圖片 js 封裝
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top