• 轮换显示图片



    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>越狱的囚徒</title>
    <style type="text/css">
    .content{
    border:3px solid red;
    padding:3px;
    500px;
    height:245px;
    position:relative;
    }
    .content img{
    border:0;

    }
    .content div{
    position:absolute;
    z-index:1000;
    border:2px solid green;
    padding:3px 5px;
    background:#ccc;
    }
    .content .cur{background:red;color:white;}//当前显示的图片的小方块,红色背景白色字体
    </style>
    <script type="text/javascript">
    var arr=['images/1.jpg','images/2.jpg','images/3.jpg','images/4.gif','images/5.jpg'];
    var i=0;
    var ob,obk;
    function lunhuan(){

    if(i>4){//数字大于4就从0开始
    i=0;
    }
    ob=document.getElementById("image1");
    ob.src=arr[i];
    //所有div-0到div-4,背景颜色置灰
    for(var j=0;j<=4;j++){
    document.getElementById("div-"+j).style.backgroundColor='#ccc';
    document.getElementById("div-"+j).style.color='black';
    }
    obk=document.getElementById("div-"+i);
    obk.style.backgroundColor='red';
    obk.style.color='white';
    i++;
    }
    </script>
    </head>
    <body onload="window.setInterval(lunhuan,1000);">
    <div class="content">
    <img id="image1" src="images/1.jpg"/>
    <div class="cur" id="div-0" style="top:215px;right:128px;">1</div>
    <div id="div-1" style="top:215px;right:98px;">2</div>
    <div id="div-2" style="top:215px;right:68px;">3</div>
    <div id="div-3" style="top:215px;right:38px;">4</div>
    <div id="div-4" style="top:215px;right:8px;">5</div>
    </div>
    <input type="button" value="test" onclick="lunhuan();"/>
    </body>
    </html>

  • 相关阅读:
    jquery on()方法绑定多个选择器,多个事件
    html中常用的特殊符号(转)
    jQuery自定义动画,animate()包装器方法
    纯CSS下拉菜单
    DIV水平居中的几种方法
    OOXML是什么
    Chrome网络工具总结
    Content-Length错误导致的Servlet下载文件失败问题
    Fiddler操作总结
    WinSCP上传下载过滤指定目录和文件
  • 原文地址:https://www.cnblogs.com/tian114527375/p/4929554.html
Copyright © 2020-2023  润新知