收藏
回答

安卓 animation 真机偶尔卡顿

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug 动画 微信安卓客户端 7.0.6 2.8.0

animation样式有时候会出现卡顿    卡顿视频地址    有时候不卡

animation样式使用在cover-view上面。

.video-animate-box .animate-img-box {
  width: 100%;
  height: 100%;
  -moz-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  animation: move 2s linear;
  -webkit-animation: move 2s linear;
  -moz-animation: move 2s linear;
  -o-animation: move 2s linear;
}
@keyframes move {
  0% {
    transform: rotate(270deg);
  }
  50% {
    transform: rotate(360deg);
  }
  60% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(270deg);
  }
}



最后一次编辑于  2019-08-10
回答关注问题邀请回答
收藏

2 个回答

  • 卢霄霄
    卢霄霄
    2019-08-10

    7.0.5的cover-image已经可以放gif了

    2019-08-10
    有用
    回复
  • 影子
    影子
    2019-08-10

    卡顿 不是你的问题,是你解决不了的问题

    2019-08-10
    有用
    回复
登录 后发表内容
问题标签