zoukankan      html  css  js  c++  java
  • 状态玻璃效果菜单(实例)

    转自:http://www.cnblogs.com/yzst/archive/2011/10/08/2201734.html

    <html >
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <style type="text/css">
    #menu ul{
     font-family:Arial, Helvetica, sans-serif;
     font-size:14px;
     padding:0px 0px 0px 8px;
     margin:0px auto;
     list-style:none;
     height:35px;
     white-space:nowrap;
     }
    #menu ul li{
     float:left;
     margin:0px 2px;
     } 
    #menu ul li a{
     display:block;
     float:left;
     line-height:35px;
     color:#666;
     text-decoration:none;
     padding:0px 0px 0px 14px;
     background:url(bj.gif);
     }
    #menu ul li a b{
     display:block;
     padding:0px 14px 0px 0px;
     background:url(bj.gif) no-repeat right top;
     }
    #menu ul li a:hover{
     color:#fff;
     background:url(bj.gif) left center;
     }
    #menu ul li a:hover b{
     background:url(bj.gif) right center;
     }
    #menu ul li.current a{
     color:#fff;
     background:url(bj.gif) no-repeat left bottom;
     background:url(bj.gif) no-repeat right bottom;
     }
    #menu ul li.current a:hover{
     background:url(bj.gif) no-repeat left bottom;
     cursor:default;
     }
    #menu ul li.current a:hover b{
     background:url(bj.gif) no-repeat right bottom;
     }
    </style>
    </head>

    <body>
    <div id="menu">
    <ul>
    <li><a href="#"><b>Home</b></a></li>
    <li><a href="#"><b>Contact Us</b></a></li>
    <li><a href="#"><b>Web Dev</b></a></li>
    <li><a href="#"><b>Web Design</b></a></li>
    <li class="current"><a href="#"><b>Map</b></a></li>
    </ul>
    </div>
    </body>
    </html>

  • 相关阅读:
    PHP开发者常犯的MySQL错误
    linux 用户管理
    php中mysql数据库异步查询实现
    PHP 安全相关 简单知识
    js倒计时 网上流传最多的
    TP学习笔记
    Java Map
    Java集合技巧
    Java集合之HashSet/TreeSet原理
    Java Set
  • 原文地址:https://www.cnblogs.com/cugwx/p/3590506.html
Copyright © 2011-2022 走看看