• JS例子(子菜单下拉)


    <style type="text/css">
    *{ margin:0px auto; padding:0px;}
    #wai{ 1000px;
          height:50px;
    	  margin-top:100px;}
    .zong{ 500px;
           height:50px;
    	   text-align:center;
    	   line-height:50px;
    	   vertical-align:middle;
    	   float:left;
    	   border:1px solid #F00;}
    .zi{ 0px;
          height:0px;
    	  float:left;}
    .ziwai{ 500px;
            height:152px;
    		border:1px solid #F00;
    		position:relative;
    		top:51px;
    		left:-502px;
    		}
    .se{ 500px;
         height:50px;
    	 text-align:center;
    	 line-height:50px;
    	 vertical-align:middle;
    	 border-bottom:1px solid #F00;
    	 }
    
    
    
    
    </style>
    

      

    <body>
    
           <div id="wai">
               <div class="zong" onmousemove="xian('yanse')" onmouseout="yin('yanse')">颜色</div>
                   <div class="zi">
                     <div class="ziwai" id="ziwai" onmousemove="shi(this)" onmouseout="cang(this)">     
                        <div class="se">红</div>
                        <div class="se">黄</div>
                        <div class="se">绿</div>
                     </div>
                   </div>
           
           
           
          
           
         </div>
           
    
    
    
    
    
    
    </body>
    <script type="text/javascript">
    function xian(yanse){
    	var a = document.getElementById("ziwai");
    	a.style.display = "block";
    }
    
    function yin(yanse){
    	var b = document.getElementById("ziwai");
    	b.style.display = "none";
    }
    
    
    function shi(c){
    	c.style.display = "block";
    }
    function cang(d){
    	d.style.display = "none";
    }
    </script>
    

      

  • 相关阅读:
    html部分常用内容
    Django media相关配置
    【设计模式】-单例模式
    SharePoint 修改完或制作完一定要发布
    SharePoint 创建模版页
    kindeditor 不能编辑 问题
    1
    SharePoint 第一个网站
    数据结构第一章
    未能加载文件或程序集“MICROSOFT.REPORTVIEWER.WEBFORMS …
  • 原文地址:https://www.cnblogs.com/nsl714745601/p/7053655.html
Copyright © 2020-2023  润新知