真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

純JS實現(xiàn)輪播圖的示例分析

這篇文章主要介紹了純JS實現(xiàn)輪播圖的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

成都創(chuàng)新互聯(lián)公司專注于陽東企業(yè)網(wǎng)站建設(shè),自適應(yīng)網(wǎng)站建設(shè),商城開發(fā)。陽東網(wǎng)站建設(shè)公司,為陽東等地區(qū)提供建站服務(wù)。全流程定制制作,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)

如下代碼:




  
  圖片輪播的效果
  
    * {
      margin: 0;
      padding: 0;
      text-decoration: none;
    }
    body {
      padding: 20px;
    }
    #container {
      position: relative;
      width: 600px;
      height: 400px;
      border: 3px solid #333;
      overflow: hidden;
    }
    #list {
      position: absolute;
      z-index: 1;
      width: 4200px;
      height: 400px;
    }
    #list img {
      float: left;
      width: 600px;
      height: 400px;
    }
    #buttons {
      position: absolute;
      left: 250px;
      bottom: 20px;
      z-index: 2;
      height: 10px;
      width: 100px;
    }
    #buttons span {
      float: left;
      margin-right: 5px;
      width: 10px;
      height: 10px;
      border: 1px solid #fff;
      border-radius: 50%;
      background: #333;
      cursor: pointer;
    }
    #buttons .on {
      background: orangered;
    }
    .arrow {
      position: absolute;
      top: 180px;
      z-index: 2;
      display: none;
      width: 40px;
      height: 40px;
      font-size: 36px;
      font-weight: bold;
      line-height: 39px;
      text-align: center;
      color: #fff;
      background-color: RGBA(0, 0, 0, .3);
      cursor: pointer;
    }
    .arrow:hover {
      background-color: RGBA(0, 0, 0, .7);
    }
    #container:hover .arrow {
      display: block;
    }
    #prev {
      left: 20px;
    }
    #next {
      right: 20px;
    }
  



  
    
    
    
    
    
    
    
  
                              
  <   >
  window.onload=function(){     var container = document.getElementById("container");     var list = document.getElementById("list");     var buttons = document.getElementById("buttons").getElementsByTagName('span');     var prev = document.getElementById("prev");     var next = document.getElementById("next");     var index = 1;    function animate(offset){      var newLeft = parseInt(list.style.left) + offset;      list.style.left = newLeft + 'px';      if(newLeft<-3000){        list.style.left= -600 +'px';      }      if(newLeft>-600){        list.style.left = -3000 + 'px';      }    }    function buttonsshow(){      for(var i =0; i5){        index=1;      }      buttonsshow();      animate(-600);    };    //自動播放    var timer;     function play(){       timer= setInterval(function(){         next.onclick();       },1000)     }     play();     function stop(){       clearInterval(timer);     }     container.onmouseover=stop;     container.onmouseout=play; for(var i=0; i

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“純JS實現(xiàn)輪播圖的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!


本文標(biāo)題:純JS實現(xiàn)輪播圖的示例分析
網(wǎng)址分享:http://weahome.cn/article/pcscje.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部