美文网首页
day7-作业

day7-作业

作者: 2ez4ddf | 来源:发表于2018-12-11 23:16 被阅读0次
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            *{
                position: relative;
                margin: 0;
                padding: 0;
            }
            #top{
                width: 600px;
                height: 200px;
                /*background-color: blue;*/
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 10px;
            }
            #top #left{
                float: left;
                width: 250px;
                height: 200px;
                background-color: red;
            }
            #top #left img{
                width: 250px;
                height: 200px;
            }
            #top #right{
                float: right;
                width: 250px;
                height: 200px;
                background-color: gold;
            }
            #top #right img{
                width: 250px;
                height: 200px;
            }
            #bottom{
                width: 600px;
                height: 600px;
                background-color: green;
                margin-left: auto;
                margin-right: auto;
            }
            #bottom img{
                width: 600px;
                height: 600px;
            }
        </style>
    </head>
    <body>
        <div id="top">
            <div id="left"></div>
            <div id="right"></div>

        </div>
        <div id="bottom"></div>
    </body>
</html>
<script type="text/javascript">
    var imgArray = ["img/01.jpg","img/03.jpg"]
    var leftNode = document.getElementById('left')
    var rightNode = document.getElementById('right')
    var imgNode = document.createElement('img')
    imgNode.src = imgArray[0]
    var imgNode1 = document.createElement('img')
    imgNode1.src = imgArray[1]
    leftNode.appendChild(imgNode)
    rightNode.appendChild(imgNode1)
    
    var bottomNode = document.getElementById('bottom')
    leftNode.onclick = function(){
        var imgNode = document.createElement('img')
        imgNode.src = imgArray[0]
        bottomNode.innerHTML = null
        bottomNode.appendChild(imgNode)
    }
    rightNode.onclick = function(){
        var imgNode = document.createElement('img')
        imgNode.src = imgArray[1]
        bottomNode.innerHTML = null
        bottomNode.appendChild(imgNode)
    }   
</script>

相关文章

  • day7-作业

    1、实现点击按钮,滚动条走动和百分比走动 结果 2、实现秒表 结果 3.文字时钟 4、处理classname兼容 ...

  • Day7-作业

    滚动条 秒表 文字时间 微信倒计时 classname兼容

  • Day7-作业

    编写⼀个函数,求1+2+3+...+N 结果: 请输入n值:101-n的和为55 编写⼀个函数,求多个数中的最⼤值...

  • day7-作业

    1.编写一个函数,求1+2+3+...+N 2.编写一个函数,求多个数中的最大值 3.编写一个函数,实现摇色子的功...

  • day7-作业

    1.编写一个函数,求1+2+3+...+N 结果 2.编写一个函数,求多个数中的最大值 结果 3.编写一一个函数,...

  • DAY7-作业

    题目一,编写一个函数,求1+2+3+...+n的和 代码实现: 输出结果: 题目二, 代码实现; 输出结果: 题目...

  • day7-作业

    import copyname_students_information = {}number_students_...

  • Day7-作业

  • day7-作业

  • Day7-作业

    1.声明一个字典保存一个学生的信息,学生信息中包括: 姓名、年龄、成绩(单科)、电话、性别(男、女、不明) 2.声...

网友评论

      本文标题:day7-作业

      本文链接:https://www.haomeiwen.com/subject/bumyhqtx.html