收藏
回答

小程序 animation ISO平台 第一次执行有动画效果,之后就没有动画了?

第一次触发,有动画的渐变效果。
恢复之后再次触发,就没有动画效果了。
开发者工具和安卓系统都OK,ISO上有这个问题。

.pop-box {
  width100%;
  height100%;
  position: fixed;
  background@color1;
  z-index8;
  animation: BackgroundColor 0.5s;

  .pop {
    width100%;
    height50%;
    padding16px;
      position: fixed;
    background@color2;
    z-index9;
    animation: DownToUp 0.25s;
    }
}

@keyframes BackgroundColor {
  0% {
    opacity0;
  }
}
@keyframes DownToUp {
  0% {
    transform: translate3d(03000px0);
  }
}

谢谢。
回答关注问题邀请回答
收藏

2 个回答

  • Demons
    Demons
    2022-04-08

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2022-04-08
    有用
    回复
  • Jacky Lee
    Jacky Lee
    2022-04-10

    谢谢。html 加了一层中间层解决了。

    2022-04-10
    有用
    回复 1
    • 堃。
      堃。
      2022-06-06
      具体解决方案能否分享一下,谢谢
      2022-06-06
      回复
登录 后发表内容