zoukankan      html  css  js  c++  java
  • 黄聪:css3实现图片划过一束光闪过效果(图片光影掠过效果)

    CSS代码

    .guangshu { display:block; position: relative; width:800px; height:450px; margin:0 auto;}
    .guangshu:before { content: ""; position: absolute; width:200px; height: 100%; top: 0; left: -150px; overflow: hidden;
    background: -moz-linear-gradient(left, rgba(255,255,255,0)0, rgba(255,255,255,.2)50%, rgba(255,255,255,0)100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(50%, rgba(255,255,255,.2)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0)0, rgba(255,255,255,.2)50%, rgba(255,255,255,0)100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0)0, rgba(255,255,255,.2)50%, rgba(255,255,255,0)100%);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg)
    }
    
    .guangshu:hover:before { left: 150%; transition: left 1s ease 0s; }

    HTML代码

    <a href="#" class="guangshu"><img src="https://static.cnblogs.com/images/adminlogo.gif"></a>
  • 相关阅读:
    窗内的星星
    亚特兰蒂斯
    你能回答这些问题吗
    区间最大公约数
    集训队8月14日(树状数组)
    一个简单的整数问题2
    谜一样的牛
    楼兰图腾
    Eternal Victory
    集训队8月12日(并查集)
  • 原文地址:https://www.cnblogs.com/huangcong/p/6062035.html
Copyright © 2011-2022 走看看