码迷,mamicode.com
首页 > Web开发 > 详细

CSS3扫描动画效果

时间:2018-11-03 15:28:38      阅读:976      评论:0      收藏:0      [点我收藏+]

标签:显示   parent   absolute   mat   lin   linear   tran   swipe   rom   

.swiper-animate {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    background: linear-gradient(to bottom, transparent, #3e88f1);
    animation: scan 1.5s ease-in-out infinite;
    -webkit-animation: scan 1.5s ease-in-out infinite;
}

@keyframes scan {
    from {
        top: -667px;
    }/*网格移动到显示区域的外面*/
    to {
        top: 0;
    }
}

@-webkit-keyframes scan {
    from {
        top: -667px;
    }
    to {
        top: 0;
    }
}

 

CSS3扫描动画效果

标签:显示   parent   absolute   mat   lin   linear   tran   swipe   rom   

原文地址:https://www.cnblogs.com/jxust-jiege666/p/9900728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!