国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

原生js輪播(仿慕課網)

2019-11-19 17:34:37
字體:
來源:轉載
供稿:網友

效果如下:

代碼如下:

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>javascript</title> <style> *{margin:0;padding:0;border:0;} a{text-decoration:none;color:#fff;font-size:40px;line-height:200px;display:none;text-align:center;} #container{width:300px;height:200px;margin:50px auto;position:relative;overflow:hidden;} #list{width:2100px;height:200px;position:absolute;top:0;} #list span{width:300px;height:200px;display:inline-block;text-align:center;font-size:22px;float:left;color:#fff;} .one{background:red;} .two{background:orange;} .three{background:blue;} .four{background:green;} .five{background:black;} #buttons{width:200px;height:30px;position:absolute;bottom:0px;left:100px;z-index:9;} #buttons span{display:inline-block;cursor:pointer;width:12px;height:12px;border-radius:6px;background: #2a2a2a} #prev{width:40px;height:200px;position:absolute;left:0px;} #next{width:40px;height:200px;position:absolute;right:0px;} #container .on{background:#fff;} </style></head><body> <div id="container"> <div id="list" style="left:-300px"> <span class="five">我是黑色第五張</span> <span class="one">我是紅色第一張</span> <span class="two">我是黃色第二張</span> <span class="three">我是藍色第三張</span> <span class="four">我是綠色第四張</span> <span class="five">我是黑色第五張</span> <span class="one">我是紅色第一張</span> </div> <div id="buttons"> <span class="on" index="1"></span> <span index="2"></span> <span index="3"></span> <span index="4"></span> <span index="5"></span> </div> <a id="prev" href="javascript:;" rel="external nofollow" rel="external nofollow" ><</a> <a id="next" href="javascript:;" rel="external nofollow" rel="external nofollow" >></a> </div> <script>  var container = document.getElementById('container'),   list = document.getElementById('list'),   buttons = document.getElementById('buttons').getElementsByTagName('span'),   prev = document.getElementById('prev'),   next = document.getElementById('next'),   index = 1,   len = 5,   interval = 3000,   animated = false,   timer;  function animate(offset){  if(offset == 0) return;  animated = true;  var time = 150,  inter = 5,  speed = offset/(time/inter),  left = parseInt(list.style.left) + offset; var go = function(){ if((speed>0 && parseInt(list.style.left)<left) || (speed<0 && parseInt(list.style.left)>left)){  list.style.left = parseInt(list.style.left) + speed + 'px';  setTimeout(go,inter); }else{  list.style.left = left + 'px';  if(left > -100){  list.style.left = -300*len + 'px';  }  if(left < (-300*len)){  list.style.left = '-300px'  }  animated = false; } } go();  }  function showButton(){  for(var i=0 ; i<buttons.length ; i++){  if(buttons[i].className == 'on'){  buttons[i].className = '';  break;  }  }  buttons[index - 1].className = 'on';  }  function play(){  timer = setTimeout(function(){  next.onclick();  play();  },interval);  }  function stop(){  clearTimeout(timer);  }  next.onclick = function(){  if(animated) {  return;  }  if(index == 5){  index = 1;  }else{  index++;  }  animate(-300);  showButton();  }  prev.onclick = function(){  if(animated) {  return;  }  if(index == 1){  index = 5;  }else{  index--;  }  animate(300);  showButton();  }  for (var i = 0; i < buttons.length; i++) {    buttons[i].onclick = function () {     if (animated) {      return;     }     if(this.className == 'on') {      return;     }     var myIndex = parseInt(this.getAttribute('index'));     var offset = -300 * (myIndex - index);     animate(offset);     index = myIndex;     showButton();    }   }  container.onmouseover = function(){  prev.style.display = next.style.display = 'block';  stop();  }  container.onmouseout = function(){  prev.style.display = next.style.display = 'none';  play(); }  play(); </script></body></html>

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持武林網!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 梓潼县| 尼玛县| 东阳市| 新平| 舟山市| 固始县| 台南市| 鲁甸县| 江口县| 蒲城县| 黄大仙区| 洱源县| 方山县| 孝义市| 深州市| 无极县| 福泉市| 信宜市| 葫芦岛市| 海南省| 东光县| 化州市| 武胜县| 迭部县| 西乌| 伊宁县| 河间市| 古交市| 岫岩| 万山特区| 龙州县| 龙胜| 从化市| 漳平市| 东宁县| 嵩明县| 象州县| 施甸县| 岳阳县| 丹江口市| 陵川县|