温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

JS怎么实现横向轮播图

发布时间:2021-04-19 10:02:04 来源:亿速云 阅读:267 作者:小新 栏目:web开发

这篇文章给大家分享的是有关JS怎么实现横向轮播图的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

描述:

轮播图,初级,横向buton或者底部数字控制轮播,可以实现自动轮播(注释了,使用的话将其注释消掉),核心知识是数据驱动图像的位移达到效果。

效果:

JS怎么实现横向轮播图

代码:

js文件:

/* * 工厂模式 * */   var Method=(function () {  return {  loadImage:function (arr,callback) {   var img=new Image();   img.arr=arr;   img.list=[];   img.num=0;   img.callback=callback; //  如果DOM对象下的事件侦听没有被删除掉,将会常驻堆中 //  一旦触发了这个事件需要的条件,就会继续执行事件函数   img.addEventListener("load",this.loadHandler);   img.self=this;   img.src=arr[img.num];  },    loadHandler:function (e) {   this.list.push(this.cloneNode(false));   this.num++;   if(this.num>this.arr.length-1){   this.removeEventListener("load",this.self.loadHandler);   this.callback(this.list);   return;   }   this.src=this.arr[this.num];  },    $c:function (type,parent,style) {   var elem=document.createElement(type);   if(parent) parent.appendChild(elem);   for(var key in style){   elem.style[key]=style[key];   }   return elem;  }  } })();

html文件:

<!DOCTYPE html> <html lang="en"> <head>  <meta charset="UTF-8">  <title>Title</title>  <style>  *{   margin: 0;   padding: 0;  }  #carousel,#imgCon img{   width: 1200px;   height: 400px;  }  #carousel  {   position: relative;   margin: auto;   overflow: hidden;  }  #imgCon{   width: 6000px;   height: 400px;   position: absolute;   left: 0;   font-size: 0;   transition: all 1s;  }  #leftBn,#rightBn  {   position: absolute;   top:170px;  }  #leftBn{   left: 20px;  }  #rightBn  {   right: 20px;  }  ul{   position: absolute;   bottom: 20px;   list-style: none;   margin: auto;   left: 45%;  }  li  {   width: 20px;   height: 20px;   border: 1px solid red;   border-radius: 10px;   float: left;   text-align: center;   color: white;   cursor: default;   line-height:20px;   font-size: 12px;   margin-left: 8px;  }  </style> </head> <body>  <div id="carousel">  <div id="imgCon">   <img src="img/a.jpeg">   <img src="img/b.jpeg">   <img src="img/c.jpeg">   <img src="img/d.jpeg">   <img src="img/e.jpeg">  </div>  <ul>   <li>1</li>   <li>2</li>   <li>3</li>   <li>4</li>   <li>5</li>  </ul>  <img src="img/left.png" id="leftBn">  <img src="img/right.png" id="rightBn">  </div> <script>  /*  *  * 数据驱动显示  *  * */  var imgCon,leftBn,rightBn,lis,ul,prevLi;  var position=0;//图像的标记 第一张0 第二张1...  init();  function init() {  imgCon=document.getElementById("imgCon");//图  leftBn=document.getElementById("leftBn");//左按钮  rightBn=document.getElementById("rightBn");//右按钮  lis=document.getElementsByTagName("li");//下方数字右按钮  ul=document.getElementsByTagName("ul")[0];  leftBn.addEventListener("click",clickHandler);  rightBn.addEventListener("click",clickHandler);  for(var i=0;i<lis.length;i++){//为每隔小Li 也就是底部数字赋值   lis[i].num=i;   lis[i].addEventListener("click",liClickHandler);  }  changeLi();  }   // setInterval(autoImg,3000);可以实现自动    function autoImg() {//自动轮播  position++;  if(position>4) position=0;  changeImg();  }    function clickHandler(e) {  e= e || window.event;  if(this===leftBn){   position--;   if(position<0) position=4;  }else if(this===rightBn){   position++;   if(position>4) position=0;  }  changeImg();  }    function liClickHandler(e) {  e= e || window.event;  position=this.num;  changeImg();  }  function changeImg() {//图片的转换效果 唯一  imgCon.style.left=-position*1200+"px";//一次一张图片的位移  changeLi();  }    function changeLi() {//底部数字的转换效果  if(prevLi){   prevLi.style.backgroundColor="rgba(255,0,0,0)";  }  prevLi=lis[position];  prevLi.style.backgroundColor="rgba(255,0,0,0.5)";  } </script> </body> </html>

感谢各位的阅读!关于“JS怎么实现横向轮播图”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

js
AI