- 当前 Bug 的表现(可附上截图)
页面放入camera组件后,里面的cover-view的animation 属性失效; cover-view不发生任何动画效果(在开发工具模拟是没有任何问题的)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
<camera class=“camera1”>
<cover-view class=“hands2”>hellow
hello
</cover-view>
</camera >
wxss:
.camera1{
position:relative;
width:100%;
height:100%
}
.hands2{
position:absolute;
top:0rpx;
left:40rpx;
width:100rpx;
height:100rpx;
animation: moveshadn 1s infinite;
}
@keyframes moveshadn{
from{
left: 40rpx;
}
to{
left:80rpx;
}
}
请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。