第一次触发,有动画的渐变效果。
恢复之后再次触发,就没有动画效果了。
开发者工具和安卓系统都OK,ISO上有这个问题。
.pop-box {
width: 100%;
height: 100%;
position: fixed;
background: @color1;
z-index: 8;
animation: BackgroundColor 0.5s;
.pop {
width: 100%;
height: 50%;
padding: 16px;
position: fixed;
background: @color2;
z-index: 9;
animation: DownToUp 0.25s;
}
}
@keyframes BackgroundColor {
0% {
opacity: 0;
}
}
@keyframes DownToUp {
0% {
transform: translate3d(0, 3000px, 0);
}
}
谢谢。
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
谢谢。html 加了一层中间层解决了。