JS实现轮播图效果
本文实例为大家分享了JS实现轮播图展示的具体代码,供大家参考,具体内容如下
原理介绍
1.html
本文实例为大家分享了JS实现轮播图展示的具体代码,供大家参考,具体内容如下
原理介绍
1.html
布局很简单,利用一个class="swiper-container"的div,包裹图片列表,swiper-btn是按钮
2.css
*{
margin:0;
padding:0;
}
a{
text-decoration:none;
}
.swiper-container{
position:relative;
width:300px;
height:300px;
margin:0auto;
border:1pxsolid;
overflow:hidden;
}
#img-list{
position:absolute;
width:1200px;
height:300px;
}
#img-listimg{
float:left;
}
#swiper-btn{
position:absolute;
bottom:5%;
left:45%;
}
#swiper-btnspan{
display:inline-block;
width:10px;
height:10px;
border-radius:5px;
}
.on{
background-color:goldenrod;
}
span{
background-color:#d7d7d7;
}
3.js
vartimer;
vardiv=document.getElementById('img-list');
varspan=document.getElementById('swiper-btn').getElementsByTagName('span');
varoffset=-300;
varindex=1;
functionswiperImg(){
timer=setInterval(()=>{
varleft=parseInt(div.style.left);
varnewLeft=left+offset;
if(newLeft<=-1200){
div.style.left='0px';
}
else{
div.style.left=newLeft+'px';
}
showBtn(parseInt(div.style.left));
},3000);
}
functionshowBtn(left){
if(left==0||left==-600){
span[0].className="on";
span[1].className="";
}
else{
span[0].className="";
span[1].className="on";
}
}
functionstopSwiper(){
clearInterval(timer);
}
for(vari=0;i
效果如下所示:
更多关于轮播图效果的专题,请点击下方链接查看学习
javascript图片轮播效果汇总
jquery图片轮播效果汇总
Bootstrap轮播特效汇总
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。