获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
谢谢。html 加了一层中间层解决了。
小程序 animation ISO平台 第一次执行有动画效果,之后就没有动画了?第一次触发,有动画的渐变效果。 恢复之后再次触发,就没有动画效果了。 开发者工具和安卓系统都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); } } 谢谢。
2022-04-10