网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网页特效 >> 菜单导航 >> 正文
最新文章
· JS版无限级网页折叠菜单,类似于树形
· CSS实现4级的下拉菜单
· 简洁的滑动门菜单
· jQuery带动画效果的多级下拉菜单
· 自动切换的JS菜单
· 隔指定时间选项卡自动切换
· CSS+JS实现兼容性很好的无限级下拉菜
· 自动切换的选项卡
· 仿163网盘网站的Js折叠菜单
· 随鼠标移过动态放大的菜单导航
热门文章
 自动固定在网页顶部的悬浮菜单栏
 仿天涯固定在网页顶部的导航条
 仿淘宝商城商品属性选择效果
 无限级CSS树形菜单 Ltree Ver2.0
 二级树形菜单CSS TreeMenu
 同一页面多种Tab及滑动门应用的综合
 仿淘宝网导航的选项卡效果
 自动切换的JS菜单
 适用于网站后台的竖向二级下拉导航
 政府网站常用的蓝色二级导航菜单
相关文章
带提示的文本搜索框,仿Dell.com
自动切换的JS菜单
可打开关闭固定底(顶)部的工具条菜单
遮罩过渡效果的图片幻灯和选项卡菜单
横向和竖向联动的选项卡菜单
始终在页面底部的菜单导航
js和css滤镜效果导航菜单
仿淘宝网导航的选项卡效果
简洁漂亮且附带提示的二级导航菜单
来源:中国站长天空 更新时间:2009/12/24 23:41:54 阅读次数: 我要投稿
△运行 ☉预览 #复制 +收藏
特效代码:
<!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>
<title>简洁漂亮且附带提示的导航菜单</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<!--把下面代码加到<head>与</head>之间-->
<style type="text/css">
*{
 padding:0px;
 margin:0px;
}
body{
 text-align:center;
 font-size:12px;
}
.page{
 width:973px;
 text-align:left;
 height:55px;
 margin-top:10px;
 margin-right:auto;
 margin-left:auto;
 }
/* 内容模块 */
.tab_mo{
 background-image:url();
 background-repeat:repeat-x;
 height:26px;
 line-height:26px;
 width:963px;
 padding-left:10px;
}
/* 菜单模块 */
.tab{
 border-bottom:1px solid #000000; /* 菜单模块的底部边框,也就是内容模块的上边框 */
 list-style:none;
 padding-top:4px;
 padding-right:5px;
 padding-bottom:3px;
 padding-left:5px;
 }
.tab li{
 display:inline; /* 【重点】让li横向排列 */
 font-size:12px;
 }
.tab li a{
 border:1px solid #ccc;  /* 菜单项的边框 */
 color:#000000;
 border-bottom:none; /* 底部无边框 */
 text-decoration:none;
 background:#f7f7f7;
 font-size:14px;
 font-weight:bold;
 padding-top:3px;
 padding-right:4px;
 padding-bottom:3px;
 padding-left:4px;
}
/* 鼠标经过时的样式 */
.tab li a:hover{ 
 background:#fff;
}
/* 选中时的样式 */
.tab li.no a{
 position:relative;  /* 【重点】菜单项里面的连接使用了相对定位 */
 top:1px;            /* 【重点】相对于外层顶部为1像素,正好是底部边框的像素,所以就遮住了ul的底部边框 */
 color:#ff0000;
 font-weight:bold;
 background-image:url();
 background-repeat:repeat-x;
 font-size:14px;
}
</style>
<script type="text/javascript">
function tab(a,b,c,d) 

for(i=1;i<=b;i++){ 
if(c==i)

// 判断选择模块
document.getElementById(a+"_mo_"+i).style.display = "block";  // 显示模块内容
document.getElementById(a+"_to_"+i).className = "no";   // 改变菜单为选中样式

else{ 
// 没有选择的模块
document.getElementById(a+"_mo_"+i).style.display = "none"; // 隐藏没有选择的模块
document.getElementById(a+"_to_"+i).className = "q";  // 清空没有选择的菜单样式


}
</script>
</head>
<body>
<!--把下面代码加到<body>与</body>之间-->
<div class="page">
  <ul class="tab">
    <li id="tab_to_1" class="no"><a href="#" onmouseover="tab('tab',9,1)">首页</a></li>
    <li id="tab_to_2"><a href="#" onmouseover="tab('tab',9,2)">衬衫</a></li>
    <li id="tab_to_3"><a href="#" onmouseover="tab('tab',9,3)">茄克</a></li>
    <li id="tab_to_4"><a href="#" onmouseover="tab('tab',9,4)">正装西装</a></li>
    <li id="tab_to_5"><a href="#" onmouseover="tab('tab',9,5)">消闲单西</a></li>
    <li id="tab_to_6"><a href="#" onmouseover="tab('tab',9,6)">裤子</a></li>
    <li id="tab_to_7"><a href="#" onmouseover="tab('tab',9,7)">外套</a></li>
    <li id="tab_to_8"><a href="#" onmouseover="tab('tab',9,8)">精品推荐</a></li>
    <li id="tab_to_9"><a href="#" onmouseover="tab('tab',9,9)">其他</a></li>
  </ul>
  <div class="tab_mo">
    <div id="tab_mo_1">最新更新的内容</div>
    <div id="tab_mo_2" style="display:none">男士衬衫|高唯便装衬衫|高唯法式衬衫</div>
    <div id="tab_mo_3" style="display:none">最新下载在这里呀</div>
    <div id="tab_mo_4" style="display:none">精品网页特效,请点击链接</div>
    <div id="tab_mo_5" style="display:none">你好,多买多送</div>
    <div id="tab_mo_6" style="display:none">你好,希望多来</div>
    <div id="tab_mo_7" style="display:none">你好,下次多来</div>
    <div id="tab_mo_8" style="display:none">你好,谢谢惠顾</div>
    <div id="tab_mo_9" style="display:none">你好,欢迎光临</div>
  </div>
</div>
</body>
</html>
△运行 ☉预览 #复制 +收藏
特效说明:
简洁漂亮且附带提示的二级导航菜单
  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号