zoukankan      html  css  js  c++  java
  • css过渡效果展示

    <style type="text/css">
    
    .content_list li{
        width: 330px;
        height: 160px;
        background-color: #FF6440;
        position: relative;
        float: left;
    
        margin-right: 24px;
        overflow: hidden;
    }
    ul:after {
        content: "";
        display: block;
        clear: both;
        height: 0;
        visibility: hidden;
    }    
    
    .content_list li .mask {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: #000;
        opacity: 0;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .content_list li:hover .mask {
        opacity: .4;
    }
    </style>
    
    <div>
        <ul class="content_list">
        <li>
           <span>opacity不透明度与transition过度的使用案例</span>
          <div class="mask"></div>
        </li>
      </ul>
    </div>

    效果:

    • opacity不透明度与transition过度的使用案例
       
  • 相关阅读:
    <c:forTokens/>标签
    小小的心得
    wordcount编写和提交集群运行问题解决方案
    全国主要城市空气质量
    模拟迁途箭头圆圈
    模拟迁途.html
    大规模markpoint特效
    hadoop例子程序:求圆周率和wordcount
    测试
    hadoop集群安装好之后的启动操作
  • 原文地址:https://www.cnblogs.com/lichihua/p/13454577.html
Copyright © 2011-2022 走看看