做了一个图标上下运动的小动画,手机浏览器ios里面都没问题,就是安卓的微信里面看动画就挂掉了
.renchou-box:after{ content: "";position: absolute;z-index: 5;bottom: 1.2rem;left:50%;width:1.5rem;height: 1.2rem;margin-left:-.75rem;background:url(/images/renchou/arrow-down.png) no-repeat;background-size:contain;
-webkit-animation:arrow .5s linear infinite alternate;
animation: arrow .5s linear infinite alternate;
}
@-webkit-keyframes arrow {
0%{transform: translate(0,-.3rem);}
100%{transform: translate(0,.3rem);}
}
@keyframes arrow {
0%{transform: translate(0,-.3rem);}
100%{transform: translate(0,.3rem);}
}
看一下你写的代码,虽然挂了-webkit-keyframes,但是里面的transform却没加-webkit
刚才帮你测试了,加上-webkit动画效果没问题
如果还有问题,试着清理一下缓存