zoukankan      html  css  js  c++  java
  • js实现图片轮播(终结版)

     解决了一些bug,干脆就在这里面也对闭包总结了下下。

     <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
    /*重置样式*/
    *{margin: 0;padding: 0; list-style: none;}
    /*wrap的轮播图和切换按钮样式*/
    .wrap{height: 445px; 100%; overflow: hidden;position: relative;}
    .wrap ul{position: absolute;}
    .wrap ul li{height: 445px;}
    .wrap ul li img {height: 445px; 100%;}
    .wrap ol{position: absolute;right: 10px;bottom: 10px;}
    .wrap ol li{height: 20px; 20px; background-color:#fff;border: 1px solid #eee; margin-left: 10px;float:left; line-height: 20px; text-align: center;border-radius: 5px;}
    .wrap ol li.active{background-color: gray; color: #fff; border-radius: 5px; }
    .g_key img { position: absolute; top:165px; cursor: pointer; }
    #g_img1 { left: 96.5%; }
    </style>
    </head>
    <body>
    <!-- wrap包裹录播的图片以及可点击跳转的按钮 -->
    <div class="wrap" id="wrap">
    <ul id="pic">
    <li><img id="g_image1" src="image/1.jpg" alt=""></li>
    <li><img src="image/2.jpg" alt=""></li>
    <li><img src="image/3.jpg" alt=""></li>
    <li><img src="image/4.jpg" alt=""></li>
    </ul>
    <ol id="list">
    <li class="active">1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
    </ol>
    <div class="g_key">
    <img src="image/a.png" id="g_img1" >
    <img src="image/b.png" id="g_img2" >
    </div>
    </div>
    <script type="text/javascript">
    window.onload=function () {
    var wrap=document.getElementById('wrap'),
    pic=document.getElementById('pic'),
    list=document.getElementById('list').getElementsByTagName('li'),
    index=1,//index=1避免第一张图片停留时间过长问题
    timer=null;

    // 定义图片切换函数
    function changeoptions(curindex){
    for(var j=0;j<list.length;j++){
    list[j].className='';//循环清除之前的active样式,只给当前元素active样式
    }
    list[curindex].className='active';
    pic.style.top=-curindex*445+'px';

    }

    function autoplay(){
    changeoptions(index);
    index++;
    if(index>=list.length){
    index=0;
    }
    }
    timer=setInterval(autoplay,2000);
    //图片自动播放

    // 鼠标划过整个容器时停止自动播放
    wrap.onmouseenter=function(){
    clearInterval(timer);

    }
    // 鼠标离开整个容器时继续播放至下一张
    wrap.onmouseleave=function(){
    timer=setInterval(autoplay,2000);
    }


    // 遍历所有数字导航实现划过切换至对应的图片
    /* for(var i=0;i<list.length;i++){
    list[i].id=i;
    list[i].onmouseover=function(){
    clearInterval(timer);
    changeoptions(this.id);
    }
    }//在循环内使用闭包方法一:this是指循环到当前的list[i],如果this.id换位i,就只会取到循环结束的值*/

    for(var i=0;i<list.length;i++){
    list[i].onmouseover= (function(i) {
    return function() {
    clearInterval(timer);
    changeoptions(i);
    }
    })(i)
    }//在循环内使用闭包方法二:通过传递变量 i,在每个函数中都可以获取到正确的索引
    /* for(var i=0;i<list.length;i++){
    list[i].onmouseover= (function(i) {
    return function() {
    clearInterval(timer);
    changeoptions(i);
    }
    }(i))
    }//在循环内使用闭包方法二:通过传递变量 i,在每个函数中都可以获取到正确的索引*/

    /*for(let i=0;i<list.length;i++){
    list[i].onmouseover=function(){
    clearInterval(timer);
    changeoptions(i);
    }
    }//在循环内使用闭包方法三:ES6的let语法,它会创建一个新的绑定,每个方法都是被单独调用
    */

    //点击左右变换图片
    var img1 = document.getElementById("g_img1");
    var img2 = document.getElementById("g_img2");
    img1.onclick=function () {
    clearInterval(timer);
    index--;
    if(index < 0){
    index = 3;
    }
    changeoptions(index);
    }
    img2.onclick=function () {
    clearInterval(timer);
    index++;
    if(index >3){
    index = 0;
    }
    changeoptions(index);
    }
    }
    </script>
    </body>
    </html>
     
  • 相关阅读:
    编程与操作系统
    maven环境快速搭建
    Maven那点事儿(Eclipse版)
    几种简单的负载均衡算法及其Java代码实现
    Java集合中那些类是线程安全的
    自己随手的一些知识点
    设计模式(一)—— 策略模式
    Unity Audio Source Properties
    [转载]Web前端和后端之区分,以及面临的挑战
    TestNG 与 Junit的比较(转)
  • 原文地址:https://www.cnblogs.com/iriliguo/p/6492242.html
Copyright © 2011-2022 走看看