zoukankan      html  css  js  c++  java
  • 鼠标经过显示菜单

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="gb2312">
    <title>隐藏页面左侧标签导航栏 - 源码之家</title>
    <style type="text/css">
    a:link,a:hover,a:visited,a:active {color: #fff;text-decoration: none;}
    body {height: 100%; 100%; margin: 0; padding: 0; background: #fff;}
    .card-holder {position: fixed; 0px;overflow: visible;}
    .card-wrapper {display: inline-block;float: right;clear: both;}
    .card {
    position: relative;
    left: 32px;
    padding: 16px 32px 16px 64px;
    margin: 8px;
    x-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 8px 0 8px -8px rgba(0, 0, 0, 0.5);
    background: #fff;
    transition: all 0.3s ease-in-out 0.1s;
    }
    .card:hover {position: relative;left: 100%; margin-left: -32px; box-shadow:0 -8px 8px -8px rgba(0, 0, 0, 0.5),0 8px 8px -8px rgba(0, 0, 0, 0.5); transition: all 0.3s ease-in-out;}
    .card-content {display: inline-block;color: #fff;font-family: 'Droid Sans', sans-serif; font-size: 16px;font-weight: bold;white-space: nowrap;}
    .bg-01 { background: #539770; }
    .bg-02 { background: #4B7D74; }
    .bg-03 { background: #8DC2BC; }
    .bg-04 { background: #EDD6B4; }
    .bg-05 { background: #BE7467; }
    .bg-06 { background: #E2AE63; }
    </style>
    </head>

    <body>

    <div class='card-holder'>
    <div class='card-wrapper'>
    <a href='#'>
    <div class='card bg-01'>
    <span class='card-content'>item #1</span>
    </div>
    </a>
    </div>
    <div class='card-wrapper'>
    <a href='#'>
    <div class='card bg-02'>
    <span class='card-content'>long menu item #2</span>
    </div>
    </a>
    </div>
    <div class='card-wrapper'>
    <a href='#'>
    <div class='card bg-03'>
    <span class='card-content'>menu item #3</span>
    </div>
    </a>
    </div>
    <div class='card-wrapper'>
    <a href='#'>
    <div class='card bg-04'>
    <span class='card-content'>item #4</span>
    </div>
    </a>
    </div>
    <div class='card-wrapper'>
    <a href='#'>
    <div class='card bg-05'>
    <span class='card-content'>menu item #5</span>
    </div>
    </a>
    </div>
    <div class='card-wrapper'>
    <a href='#'>
    <div class='card bg-06'>
    <span class='card-content'>long menu item #1</span>
    </div>
    </a>
    </div>
    </div>
    </body>
    </html>

  • 相关阅读:
    Java 多线程同步的五种方法
    MySQL中的内连接、左连接、右连接、全连接、交叉连接
    java中线程安全和非线程安全的集合
    hashCode和equal
    MySQL中char、varchar和nvarchar的区别
    MySQL存储引擎
    String在内存中如何存储(Java)
    String、StringBuffer、StringBuilder区别
    MySQL中的事务
    gbk、utf-8、utf8mb4区别
  • 原文地址:https://www.cnblogs.com/ince/p/9860508.html
Copyright © 2011-2022 走看看