【发布时间】:2014-08-23 13:15:43
【问题描述】:
@-webkit-keyframes headerFade
0%
opacity: 0
50%
opacity: 1
99%
opacity: 0
@keyframes headerFade
0%
opacity: 0
50%
opacity: 1
99%
opacity: 0
.header
width: 100px
height: 100px
background: #ccc
position: relative
.header.ani:before
content: ' '
width: 100%
height: 100%
position: absolute
top: 0
left: 0
background-color: #000000
-webkit-transform: translate3d(0,0,0)
-webkit-backface-visibility: hidden
-webkit-animation: headerFade 1s linear infinite
-webkit-animation-fill-mode: forwards
animation: headerFade 1s linear infinite
它在 chrome 上运行良好,但在 cordova android 应用程序(Can I Use 表示它受 android browser > 4.0 的支持。我有什么问题吗?
【问题讨论】: