CSS 动画:在第一个关键帧之后加载第二个关键帧

发布于 2024-12-09 13:00:24 字数 245 浏览 0 评论 0原文

我研究 CSS 动画,有一个问题。

这是我的示例:

http://jsfiddle.net/MBJbB/ 注意:仅在 WebKit 浏览器中工作。

我有 2 个关键帧。我设置“第一个”重复3次。

运行 3 次中的“第一个”关键帧后,我想无限次调用“第二个”关键帧。

I study CSS Animations and I have a question.

This is my example:

http://jsfiddle.net/MBJbB/
Note: Work only in WebKit browsers.

I have 2 keyframes. I set "first" to repeat 3 times.

After running the "first" keyframe of the 3 times, I wanted to call the "second" infinite times.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

懒的傷心 2024-12-16 13:00:24

编辑:joshuanhibbert的答案更优雅。使用它。

$("#ball").bind("webkitAnimationEnd oAnimationEnd msAnimationEnd animationend", function(){
  $(this).addClass("infinite");
});

和你的CSS

#ball.infinite {
  -webkit-animation: second 1s ease-in 0 infinite alternate;
  -moz-animation: second 1s ease-in 0 infinite alternate;
  -o-animation: second 1s ease-in 0 infinite alternate;
  -ms-animation: second 1s ease-in 0 infinite alternate;
  animation: second 1s ease-in 0 infinite alternate;
}

JSfiddle:http://jsfiddle.net/K74TW/

Edit: joshuanhibbert's answer is more elegant. Use it.

$("#ball").bind("webkitAnimationEnd oAnimationEnd msAnimationEnd animationend", function(){
  $(this).addClass("infinite");
});

And your CSS

#ball.infinite {
  -webkit-animation: second 1s ease-in 0 infinite alternate;
  -moz-animation: second 1s ease-in 0 infinite alternate;
  -o-animation: second 1s ease-in 0 infinite alternate;
  -ms-animation: second 1s ease-in 0 infinite alternate;
  animation: second 1s ease-in 0 infinite alternate;
}

JSfiddle: http://jsfiddle.net/K74TW/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文