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

css3 animation 在某些浏览器中特别快 bugfix

时间:2017-11-09 20:55:32      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:log   nsf   animation   class   lin   view   ram   pre   frame   

今天在一款三星 4.2.2 的 webview 里,出现 animation 特别快的问题,把:

.xxx{
    -webkit-animation: xxx 24s linear infinite;
}

@-webkit-keyframes xxx {
    0% {
        -webkit-transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-800%, 0);
    } 
}

 修改为:

@-webkit-keyframes xxx {
    0% {
        -webkit-transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-5760px, 0);
    } 
}

  

就好了

.xxx 也定义 width 了,但百分比还是出错了,不靠谱

 

css3 animation 在某些浏览器中特别快 bugfix

标签:log   nsf   animation   class   lin   view   ram   pre   frame   

原文地址:http://www.cnblogs.com/frostbelt/p/7810996.html

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