zoukankan      html  css  js  c++  java
  • 5,17练习题二

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
        </head>
        <style type="text/css">
            *{
                margin: 0px auto;
                padding: 0px;
            }
            
            #anniu{
                100px;
                height: 80px;
                text-align: center;
                line-height: 80px;
                background-color: blue;
            }
            #anniu2{
                100px;
                height: 80px;
                text-align: center;
                line-height: 80px;
                background-color: blue;
            }
            #anniu3{
                100px;
                height: 80px;
                text-align: center;
                line-height: 80px;
                background-color: blue;
                
            }
            #anniu4{
                100px;
                height: 80px;
                text-align: center;
                line-height: 80px;
                background-color: blue;
                display: none;
            }
            #continer{
                100%;
                height: 200px;        
                background-color: red;
                
                }
            #anniu5{
                100px;
                height: 80px;
                text-align: center;
                line-height: 80px;
                background-color: blue;
                }
            #anniu6{
                100px;
                height: 80px;
                text-align: center;
                line-height: 80px;
                background-color: blue;
                display: none;
                float:left;
         }
            
            
        </style>
        <body>
            <div id="anniu" onclick="tanChuang()">按钮</div>
            <input type="button" name="" id="anniu2" value="按钮" onclick="tanChuang()"/>
            <button id=anniu3 onclick="tanChuang()">按钮</button>
                <br />    <br />
            <label onmouseover="xianshi()" onmouseout="yincang()"><input type="checkbox" />鼠标经过出现按钮</label>
            <button id="anniu4">按钮</button>
            <br />    <br />
            <div id="continer" onmouseover="yiRu()" onmouseout="yichu()">鼠标经过这个div变高变色,移出再恢复</div>
            <div id="anniu3" onclick="change1()">颜色1 </div>
            <br />    <br />
            <div id="anniu3" onclick="change2()">颜色2 </div>    
            <br />    <br />
            <br />    <br />
            <button id="anniu5" onclick="showhide()">按钮1</button>
            <button id="anniu6" onclick="showhide()">按钮2</button>
        </body>
    </html>
    <script type="text/javascript">
        function tanChuang() {
            alert("弹出窗口");
        }    
        function xianshi(){
            var div1 =document.getElementById("anniu4");
            div1.style.display="block";
        }
        function yincang(){
            var div1 =document.getElementById("anniu4");
            div1.style.display="none";
        }
        function yiRu(){
            var div2=document.getElementById("continer");
            div2.style.width = "80%";
            div2.style.height = "400px";
            div2.style.backgroundColor ="green"
        }
        function yichu(){
            var div2=document.getElementById("continer");
            div2.style.width = "100%";
            div2.style.height = "200px";
            div2.style.backgroundColor ="red "
        }
        function change1(){
            var bodycolor=document.body;
            bodycolor.style.backgroundColor="red";
        }
        function change2(){
            var bodycolor=document.body;
            bodycolor.style.backgroundColor="green";
        }
        function showhide(){
            var showhide = document .getElementById("anniu6").style.display;
            if(showhide=='none'){
                document .getElementById("anniu6").style.display="block";
            }else{
                document .getElementById("anniu6").style.display="none";
            }
        }
    
        </script>
    
        

  • 相关阅读:
    asp.net mvc 国际化(2) 解决问题
    asp.net mvc 国际化(1) 国际化的基础
    Silverlight自学笔记布局基础
    ASP.NET MVC form验证
    Expression Tree 入门
    JQuery 思维导图
    HashMap的Put方法(二)
    HashMap的构造函数(三)
    HashMap的数据结构(一)
    HashMap之扩容resize(四)
  • 原文地址:https://www.cnblogs.com/sunhao1987/p/9057967.html
Copyright © 2011-2022 走看看