在video里的cover-view添加css动画后,安卓中异常
* Bug 表现是什么?预期表现是什么?
在video里的cover-view添加css动画后,安卓中cover-view消失或动画卡顿,但ios正常。且在之前的版本中安卓是正常的。
* 如何复现?
* 提供一个最简复现 Demo
<video style=‘width:600rpx;height:450rpx;margin:10px 75rpx 0;position:relative;’>
<cover-view style=‘position:absolute;top:15px;color:#fff;left:0;background:rgba(0,0,0,0.7); animation: marquee 12s linear infinite;’>漂浮在视频上方的文字 </cover-view>
</video>
@keyframes marquee {
0% {
transform: translateX(750rpx);
}
100% {
transform: translateX(-100%);
}
}
望大神解答,谢谢!