css3 animation 动画 在iPhone 11 Pro Max 一会生效一会不生效?
发布于 6 年前 作者 chaofang 9670 次浏览 来自 官方Issues

安卓和开发工具都正常,就是iphone11promax真机上无效。

animation动画有时候生效有时候不生效,很奇怪

2 回复

你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

animation: logo_Out .2s;


[@keyframes](/user/keyframes) logo_Out{

0% {

transform: translateY(-80%);

opacity: 0;

}

100%{

transform: translateY(0);

opacity: 1;

}

}

代码如上,有时候不执行

回到顶部