亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

jquery Banner輪播選項(xiàng)卡

original 2017-01-13 15:26:29 355
abstrait:本文實(shí)例為大家分享了jquery Banner輪播選項(xiàng)卡的具體代碼,供大家參考,具體內(nèi)容如下<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title&

本文實(shí)例為大家分享了jquery Banner輪播選項(xiàng)卡的具體代碼,供大家參考,具體內(nèi)容如下

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.wraper{
width: 1200px;
margin: 0 auto;
position: relative;
}
.banner{
width: 100%;
position: relative;
height: 460px;
}
.banner ul{
position:absolute;
left:0;
top:0;
width:10000px;
}
.ba_slider{ width:1920px;
height:460px;
position:absolute;
overflow: hidden;
left: 50%;
margin-left: -960px;
}
.ba_center{
 
 
position: absolute;
height: 460px;
left: 50%;
top: 0;
margin-left:-600px;
}
.ba_slider ul{ position:relative;
width: 100000px;
}
.ba_slider ul li{
position: relative;
float: left;
}
.ba_slider img{
width:1920px;
height:460px;
}
.ba_prev,.ba_next{
width:60px;
height:100px;
background:rgba(0,0,0,0.5);
color:#fff;
text-decoration:none;
font-size:50px;
line-height:100px;
text-align:center;
position:absolute;
top:50%;
margin-top:-50px;
z-index:99;
}
.ba_prev{ left:0; }
.ba_next{ right:0; }
.ba_slider ol{
position:absolute;
left:50%;
bottom:10px;
overflow:hidden;
margin-left:-220px;
}
.ba_slider ol li{
width:100px;
height:6px;
background:rgb(85,85,85);
float:left; margin-right:10px;
}
.ba_slider ol li.on{
background:#fff;
}
</style>
</head>
<body>
<div class="banner">
<div class="ba_slider">
<div class="wraper ba_center">
<a class="ba_prev" href="javascript:;"><</a>
   <a class="ba_next" href="javascript:;">></a>
</div>
  
 <ul>
   <li>
   <a href="javascript:;">
    <img src="http://scimg.jb51.net/allimg/140708/11-140FQ53531Q9.jpg" alt="" />
    </a>
   </li>
   <li>
   <a href="javascript:;">
    <img src="http://sc.jb51.net/uploads/allimg/140520/10-140520212515A9.jpg" alt="" />
    </a>
   </li>
   <li>
   <a href="javascript:;">
    <img src="http://www.xxyo.com/pictures/xz/4.jpg" alt="" />
    </a>
   </li>
   <li>
   <a href="javascript:;">
    <img src="http://img1.3lian.com/2015/w7/85/d/25.jpg" alt="" />
    </a>
   </li>
  </ul>
  <ol>
   <li class="on"></li>
   <li></li>
   <li></li>
   <li></li>
  </ol>
</div>
 </div>
</body>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script>
<script>
cBanner();
function cBanner(){
var iNow=0; //初始化自定義值
var w = $('.ba_slider ul img').width(); //獲取圖片寬度
function bTimer(){
//定時(shí)器
clearInterval(b_timer);
//先關(guān)后開(kāi)
var b_timer = setInterval(function(){
iNow++;
if(iNow == $('.ba_slider ul li').length){ //判斷是否最后一張圖片
iNow=0;
}
tab(); //當(dāng)前分頁(yè)器高亮
$('.ba_slider ul').eq(0).animate({ //ul運(yùn)動(dòng)距離
left:-iNow*w
},1000);
 
},2000); //定時(shí)器時(shí)間
$('.ba_slider').mouseover(function(){ //鼠標(biāo)移入關(guān)閉定時(shí)器
clearInterval(b_timer);
});
}
bTimer(); //定時(shí)器函數(shù)調(diào)用
$('.ba_slider').mouseout(function(){
//鼠標(biāo)移出調(diào)用定時(shí)器
bTimer();
});
$('.ba_next').click(function (){
//點(diǎn)擊切換下一個(gè)圖片
iNow++;
if(iNow==$('.ba_slider ul li').length){ //判斷iNow是否為最后一張圖片
iNow=0;
}
$('.ba_slider ul').eq(0).animate({  //運(yùn)動(dòng)距離
left:-iNow*w
},1000);
tab(); //當(dāng)前分頁(yè)器高亮
 
});
$('.ba_prev').click(function (){  //點(diǎn)擊切換上一個(gè)
iNow--;
if(iNow==-1){ //判斷是否是第一張圖片
iNow = $('.ba_slider ul li').length-1 ;
}
$('.ba_slider ul').eq(0).animate({ //運(yùn)動(dòng)距離
left:-iNow*w
},1000);
tab(); //當(dāng)前分頁(yè)器高亮
});
 
$('ol li').click(function (){
//點(diǎn)擊分頁(yè)器選擇圖片
iNow=$(this).index();
//iNow賦值為當(dāng)前分頁(yè)器索引值
$('.ba_slider ul').eq(0).animate({
left:-iNow*w
},1000);
tab();
});
function tab(){
//分頁(yè)器高亮效果
$('ol li').removeClass('on');
$('ol li').eq(iNow).addClass('on');
}
};
</script>
</html>

更多關(guān)于jquery Banner輪播選項(xiàng)卡請(qǐng)關(guān)注PHP中文網(wǎng)(ipnx.cn)其他文章!

Notes de version

Entrées populaires