先看效果,如果是你想要的,可以看看
总体思路:
1.自动轮播
2.指定轮播
3.左右翻动
详细步骤:jQuery部分
好了不多说了,直接上代码
html
css
*{
margin:0px;
padding:0px;
list-style-type:none;
}
#banner{
width:520px;
height:280px;
position:absolute;
top:50%;
margin-top:-140px;
left:50%;
margin-left:-260px;
}
.pic img{
position:absolute;
}
.tabs{
position:absolute;
bottom:10px;
left:200px;
}
.tabs li{
width:20px;
height:20px;
border:2px solid #fff;
float:left;
margin-left:5px;
border-radius:100%;
}
.btn{
width:30px;
height:50px;
background-color:rgba(0,0,0,.5);
color:#fff;
font-size:30px;
line-height:50px;
text-align:center;
position:absolute;
top:50%;
margin-top:-25px;
cursor:pointer;
}
.btn:hover{
background-color:rgba(0,0,0,.8);
color:red;
}
.btn1{
left:0;
}
.btn2{
right:0;
}
.bg{
background-color:red;
}
js
var i=0;
var Timer;
$(function(){
$(".picImg").eq(0).show().siblings().hide(); //默认第一张图片显示,其他的隐藏
//自动轮播
TimerBanner();
//点击红圈
$(".tabs li").hover(function(){ //鼠标移动上去
clearInterval(Timer); //让计时器暂时停止 清除计时器
i=$(this).index(); //获取该圈的索引
showPic(); //调用显示图片的方法,显示该索引对应的图片
},function(){ //鼠标离开
TimerBanner(); //继续轮播 计时器开始
});
//点击左右按钮
$(".btn1").click(function(){
clearInterval(Timer);
i--; //往左
if(i==-1){
i=4;
}
showPic();
TimerBanner();
});
$(".btn2").click(function(){
clearInterval(Timer);
i++; //往右
if(i==5){
i=0;
}
showPic();
TimerBanner();
});
});
//轮播部分
function TimerBanner(){
Timer = setInterval(function(){
i++;
if(i==5){
i=0;
}
showPic()
},1000);
}
//显示图片
function showPic(){
$(".picImg").eq(i).show().siblings().hide();
$(".tabs li").eq(i).addClass("bg").siblings().removeClass("bg");
}
思路也数说了,这个实例很简单,代码也有详细的注释,有不懂得随时呼叫我,看到即回,
下载链接:
链接:https://pan.baidu.com/s/1Ar7vP_cPUAwmw6UipnnzFg 密码:ypol
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。