• 状态玻璃效果菜单(实例)


    转自: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>

  • 相关阅读:
    @ExceptionHandler
    使用Vue.extend实现iview Upload在单文件上传时,拖拽多个文件给出错误提示
    spring 常用的注入方式
    SpringMVC框架
    Redis
    事务的隔离性以及隔离级别
    Qt的获取和安装
    C++ 指针delete 及 指针delete后赋值为NULL
    图形流水线
    freeglut的安装步骤
  • 原文地址:https://www.cnblogs.com/cugwx/p/3590506.html
Copyright © 2020-2023  润新知