{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

CSS3高光划过效果代码教程

我们常常看到的高光划过效果,其实用CSS就能实现,CSS3高光划过效果代码教程方法

CSS3高光划过效果代码

.logo-wrapper {
    position: relative;
    font-size:2em;
    font-weight:700;
    line-height:39px;
    overflow:hidden;
    margin:0;
}
.logo-wrapper::before{
    content:"";
    position: absolute;
    width: 150px;
    height: 10px;
    background-color: rgba(255,255,255,.5);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: searchLights 1s ease-in 1s infinite;
    animation: searchLights 1s ease-in 1s infinite;
}
@-webkit-keyframes searchLights {
    0% { left: -90px; top: 0; }
    to { left: 90px; top: 0; }
}

.logo-wrapper为需要增加效果的盒子,.logo-wrapper::before为添加的一道高光,@-webkit-keyframes searchLights高光动画效果代码。


资源均来自第三方,谨慎下载,前往第三方网站下载


米微资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:CSS3高光划过效果代码教程
喜欢 ()分享 (0)