61

以下样式只是如何在 CSS3 中设置过渡的示例。
是否有一个纯 CSS 技巧可以让这个循环播放?

div {
    width:100px;
    height:100px;
    background:red;
    transition:width 0.1s;
    -webkit-transition:width 0.1s; /* Safari and Chrome */
    -moz-transition:width 0.1s; /* Firefox 4 */
    -o-transition:width 0.1s; /* Opera */
    transition:width 0.1s; /* Opera */
}

div:hover {
    width:300px;
}
4

2 回答 2

108

CSS 过渡仅从一组样式动画到另一组样式;您正在寻找的是CSS 动画

您需要定义动画关键帧并将其应用于元素:

@keyframes changewidth {
  from {
    width: 100px;
  }

  to {
    width: 300px;
  }
}

div {
  animation-duration: 0.1s;
  animation-name: changewidth;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

查看上面的链接以了解如何根据自己的喜好对其进行自定义,并且您必须添加浏览器前缀。

于 2012-11-09T14:19:42.970 回答
10

如果您想利用“变换”属性提供的 60FPS 平滑度,您可以将两者结合起来:

@keyframes changewidth {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(2);
  }
}

div {
  animation-duration: 0.1s;
  animation-name: changewidth;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

关于为什么 transform 提供更平滑过渡的更多解释: https ://medium.com/outsystems-experts/how-to-achieve-60-fps-animations-with-css3-db7b98610108

于 2019-08-13T20:16:29.053 回答