css3 - 动画/关键帧浏览器问题

时间:2013-08-31 22:51:24

标签: css3

在Chrome中运行此动画时出现问题:

.login-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -60px 0 0 -60px;
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 10px solid #19bee1;
}
.login-loading:after {
  content: '';
  background: trasparent;
  width: 140%;
  height: 140%;
  position: absolute;
  border-radius: 100%;
  top: -20%;
  left: -20%;
  opacity: 0.7;
  box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
    -webkit-animation:rotates 2s infinite linear;
    -moz-animation:rotates 2s infinite linear;
    -o-animation:rotates 2s infinite linear;
  animation: rotates 2s infinite linear;
}

@keyframes rotates {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes rotates {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-moz-keyframes rotates {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-o-keyframes rotates {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

这是一个装有纺纱“尾巴”的装载机。我的问题是动画没有移动/运行。我使用的是谷歌浏览器。

1 个答案:

答案 0 :(得分:1)

Safari和Chrome正在使用属性-webkit-transform

解决方案是在每个transform属性上添加-webkit-transform属性。