• 图片的轮播与选择上下页方法


    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>无标题文档</title>
    <style>
    #a{ 520px;
    height: 280px;
    margin-left: 0px;
    margin-top: 0px;
    }
    #b{ 29px;
    height: 52px;
    float: left;
    margin-left: 0px;
    margin-top: 0px;
    position: relative;
    top: 162px;
    left: 0px;
    z-index: 2;
    background: url(../img/shangyizhang.png) no-repeat;
    cursor: pointer;}
    #c{ 29px;
    height: 52px;
    position: relative;
    top: -117px;
    left: 491px;
    z-index: 2;
    background: url(../img/xiayizhang.png) no-repeat;
    cursor: pointer;}
    #A{margin-left: 500px;}
    .d{ 15px;
    height: 15px;
    float: left;
    margin-left: 5px;
    margin-top: 0px;
    border-radius: 50%;
    background-color: black;
    cursor: pointer;
    }
    #B{ 100px;
    height: 30px;
    position: relative;
    top: -40px;
    left: 200px;}
    </style>


    <script>

    function one (type){
    document.getElementById("a").innerHTML ='<img src="img/'+type+'">'
    }
    var d = 5;
    function two (type){
    document.getElementById("a").innerHTML = '<img src="img/'+d+'.jpg">';
    if(type=='shang'){
    d--;
    if(d==0){d=5;}
    }else if(type == 'xia'){
    d++;
    if(d==6){d=1;}
    }
    }


    window.onload = function(){
    setInterval(
    function(){
    document.getElementById("a").innerHTML = '<img src="img/'+d+'.jpg">';
    d++;
    if(d==6){d=1;}
    },
    4000
    )
    }
    </script>
    </head>

    <body>
    <div id="A">
    <button id="b" onClick="two('shang')"></button>
    <div id="a"><img src="./img/1.jpg" onMouseOver="three()"></div>
    <button id="c" onClick="two('xia')"></button>
    <div id="B">
    <div class="d" id="e" onClick="one('1.jpg')"></div>
    <div class="d" id="f" onClick="one('2.jpg')"></div>
    <div class="d" id="g" onClick="one('3.jpg')"></div>
    <div class="d" id="h" onClick="one('4.jpg')"></div>
    <div class="d" id="i" onClick="one('5.jpg')"></div>

    </div>
    </div>
    </body>
    </html>

  • 相关阅读:
    socket编程之二:两种链接类型tcp和udp
    屌丝、小白怎么拿国内巨头offer
    python调用tcpdump抓包过滤
    设计模式6大原则
    Javascript中bind()方法的使用与实现
    vue-cli中的check-versions.js配置文件包括semver,chalk,shell插件的解释
    基础组件(二)
    浏览器跨域请求之credentials
    跨域资源共享 CORS 详解
    PHP从入门到精通(六)
  • 原文地址:https://www.cnblogs.com/wangyufei123/p/7746148.html
Copyright © 2020-2023  润新知