Questions tagged «css-animations»

CSS动画使从一个CSS样式配置过渡到另一个CSS样式配置成为可能。CSS模块描述了一种使用关键帧使作者随时间变化的CSS属性值的方法。这些关键帧动画的行为可以通过指定其持续时间,重复次数和重复行为来控制。

4
如何在CSS“过山车”动画中弯曲一条线?
我正在尝试使用CSS创建过山车风格的动画。 我想知道在循环阶段如何弯曲“过山车”。 我正在寻找所有CSS解决方案,但是如果需要一点JavaScript,我可以接受。 到目前为止,我的代码: #container { width: 200px; height: 300px; margin-top: 50px; position: relative; animation: 10s infinite loop; animation-timing-function: linear; } #coaster { width: 100px; height: 10px; background: lightblue; position: absolute; bottom: 0; left: 1px; right: 1px; margin: 0 auto; } @keyframes loop { from { margin-left: -200px; } 30% …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.