最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

javascript實現帶下拉子菜單的導航菜單效果

 更新時間:2015年05月14日 15:09:15   作者:永遠愛好寫程序  
這篇文章主要介紹了javascript實現帶下拉子菜單的導航菜單效果的方法,涉及javascript操作頁面元素與樣式的相關技巧,需要的朋友可以參考下

本文實例講述了javascript實現帶下拉子菜單的導航菜單效果。分享給大家供大家參考。具體實現方法如下:

<!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">
body { font-family: Verdana; font-size: 12px; line-height: 1.5; }
a { color: #000; text-decoration: none; }
a:hover { color: #F00; }
#menu { width:500px; height:28px; margin:0 auto; border-bottom:3px solid #E10001;}
#menu ul { list-style: none; margin: 0px; padding: 0px; }
#menu ul li { float:left; margin-left:2px;}
#menu ul li a { display:block; width:87px; height:28px; line-height:28px; text-align:center; font-size:14px;}
#menu ul li a#current { font-weight:bold; color:#fff;}
#menu ul li ul { border:1px solid #ccc; display:none; position:absolute;}
#menu ul li ul li { float:none; width:87px; background:#eee; margin:0;}
#menu ul li ul li a { background:none;}
#menu ul li ul li a:hover { background:#333; color:#fff;}
#menu ul li:hover ul { display:block;}
#menu ul li.sfhover ul { display:block;}
</style>
<script type="text/javascript"><!--  //--><![CDATA[//><!--
function menuFix() {
  var sfEls = document.getElementById("menu").getElementsByTagName("li");
  for (var i = 0; i < sfEls.length; i++) {
    sfEls[i].onmouseover = function () {
      this.className += (this.className.length > 0 ? " " : "") + "sfhover";
    }
    sfEls[i].onMouseDown = function () {
      this.className += (this.className.length > 0 ? " " : "") + "sfhover";
    }
    sfEls[i].onMouseUp = function () {
      this.className += (this.className.length > 0 ? " " : "") + "sfhover";
    }
    sfEls[i].onmouseout = function () {
      this.className = this.className.replace(new RegExp("( ?|^)sfhover\\b"),
    "");
    }
  }
}
window.onload = menuFix;
//--><!]]>
</script>
</head>
<body>
<div id="menu">
<ul>
  <li><a id="current" href="#">首頁</a></li>
  <li><a href="#">網頁版式</a>
    <ul>
      <li><a href="#">自適應寬度</a></li>
      <li><a href="#">固定寬度</a></li>
    </ul>
  </li>
  <li><a href="#">web教程</a>
    <ul>
      <li><a href="#">新手入門</a></li>
      <li><a href="#">視頻教程</a></li>
      <li><a href="#">常見問題</a></li>
    </ul>
  </li>
  <li><a href="#">web實例</a></li>
  <li><a href="#">常用代碼</a></li>
</ul>
</div>
</body>
</html>

希望本文所述對大家的javascript程序設計有所幫助。

相關文章

最新評論

太白县| 中宁县| 浦江县| 邛崃市| 田林县| 新化县| 万源市| 宣恩县| 华坪县| 贵港市| 保山市| 遵义县| 历史| 潜山县| 安阳市| 保靖县| 苍南县| 丰县| 白水县| 安丘市| 新河县| 宽城| 淮北市| 汝城县| 镇康县| 武功县| 晋州市| 神农架林区| 临海市| 大安市| 高邮市| 三门县| 鹤山市| 霍林郭勒市| 达孜县| 乐陵市| 永宁县| 肇源县| 湘西| 东源县| 高邑县|