jquery实现左右滑动式轮播图
本⽂实例为⼤家分享了jquery左右滑动轮播图的具体代码,供⼤家参考,具体内容如下
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<title>图⽚轮播jq(左右切换)</title>
<style>
*{margin: 0;padding:0; }
ul{list-style: none;}
.banner{width: 600px;height: 300px;border: 2px solid #ccc;margin: 100px auto;position: relative;overflow: hidden;z-index: 1;}
.img{position: absolute;top: 0;left: 0;}
.des{position: absolute;bottom: 0;left: 0;z-index: -2;background: #ccc}
.des li{float: left;width: 600px;}
.img li{float: left;}
.num{position: absolute;bottom: 10px;width: 100%;text-align: center;font-size: 0;}
.num li{width: 10px;height: 10px;background:rgba(0,0,0,0.5);display: block;border-radius: 100%;display: inline-block;margin: 0 5px;cursor: pointer;}
.btn{display: none;}
.btn span{display: block;width: 50px;height: 100px;background: rgba(0,0,0,0.6);color: #fff;font-size: 40px;line-height: 100px;text-align: center;cursor:pointer;} .btn .prev{position: absolute;left: 0;top: 50%;margin-top: -50px;}
.btn .next{position: absolute;right: 0;top: 50%;margin-top: -50px;}
.
num .active{background-color: #fff;}
.hide{display: none;}
</style>
</head>
<body>
<div class="banner">
<ul class="img">
<li><a href="#"><img width="600" height="300" src="img/1.jpg" alt="第1张图⽚"></a></li>
<li><a href="#"><img width="600" height="300" src="img/1.jpg" alt="第2张图⽚"></a></li>
<li><a href="#"><img width="600" height="300" src="img/1.jpg" alt="第3张图⽚"></a></li>
<li><a href="#"><img width="600" height="300" src="img/1.jpg" alt="第4张图⽚"></a></li>
<li><a href="#"><img width="600" height="300" src="img/1.jpg" alt="第5张图⽚"></a></li>
</ul>
<ul class="num"></ul>
<ul class="des">
<li>第⼀个</li>
<li>第⼆个</li>
<li>第三个</li>
<li>第四个</li>
<li>第五个</li>
<li>第⼀个</li>
</ul>
<div class="btn">
<span class="prev"><</span>
<span class="next">></span>
</div>
</div>
<script>
$(function(){
var i=0;
var timer=null;
for (var j = 0; j < $('.img li').length; j++) { //创建圆点
$('.num').append('<li></li>')
}
$('.num li').first().addClass('active'); //给第⼀个圆点添加样式
var firstimg=$('.img li').first().clone(); //复制第⼀张图⽚
$('.img').append(firstimg).width($('.img li').length*($('.img img').width()));
//第⼀张图⽚放到最后⼀张图⽚后,设置ul的宽度为图⽚张数*图⽚宽度
$('.des').width($('.img li').length*($('.img img').width()));
// 下⼀个按钮
$('.next').click(function(){
i++;
if (i==$('.img li').length) {
i=1; //这⾥不是i=0
$('.img').css({left:0}); //保证⽆缝轮播,设置left值
$('.img').stop().animate({left:-i*600},300);
if (i==$('.img li').length-1) { //设置⼩圆点指⽰
$('.num li').eq(0).addClass('active').siblings().removeClass('active');
$('.des li').eq(0).removeClass('hide').siblings().addClass('hide');
}else{
$('.num li').eq(i).addClass('active').siblings().removeClass('active');
$('.des li').eq(i).removeClass('hide').siblings().addClass('hide');
}
})
// 上⼀个按钮
$('.prev').click(function(){
i--;
if (i==-1) {
i=$('.img li').length-2;
$('.img').css({left:-($('.img li').length-1)*600});
}
$('.img').stop().animate({left:-i*600},300);
$('.num li').eq(i).addClass('active').siblings().removeClass('active');
jquery在线图片$('.des li').eq(i).removeClass('hide').siblings().addClass('hide');
})
//设置按钮的显⽰和隐藏
$('.banner').hover(function(){
$('.btn').show();
},function(){
$('.btn').hide();
})
//⿏标划⼊圆点
$('.num li').mouseover(function(){
var _index=$(this).index();
$('.img').stop().animate({left:-_index*600},150);
$('.num li').eq(_index).addClass('active').siblings().removeClass('active'); $('.des li').eq(_index).removeClass('hide').siblings().addClass('hide'); })
//定时器⾃动播放
timer=setInterval(function(){
i++;
if (i==$('.img li').length) {
i=1;
$('.img').css({left:0});
};
$('.img').stop().animate({left:-i*600},300);
if (i==$('.img li').length-1) {
$('.num li').eq(0).addClass('active').siblings().removeClass('active');
$('.des li').eq(0).removeClass('hide').siblings().addClass('hide');
}else{
$('.num li').eq(i).addClass('active').siblings().removeClass('active');
$('.des li').eq(i).removeClass('hide').siblings().addClass('hide');
}
},1000)
//⿏标移⼊,暂停⾃动播放,移出,开始⾃动播放
$('.banner').hover(function(){
clearInterval(timer);
},function(){
timer=setInterval(function(){
i++;
if (i==$('.img li').length) {
i=1;
$('.img').css({left:0});
};
$('.img').stop().animate({left:-i*600},300);
if (i==$('.img li').length-1) {
$('.num li').eq(0).addClass('active').siblings().removeClass('active');
$('.des li').eq(0).removeClass('hide').siblings().addClass('hide');
}else{
$('.num li').eq(i).addClass('active').siblings().removeClass('active');
$('.des li').eq(i).removeClass('hide').siblings().addClass('hide');
}
},1000)
})
</script>
</body>
</html>
更多关于滑动效果的专题,请点击下⽅链接查看:
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。