给定步骤的 CSS3 或 jQuery 动画

发布于 2024-12-10 19:12:09 字数 691 浏览 0 评论 0原文

我有一个 CSS 可以实现淡出效果。

#mainframe.normal
{
    opacity: 1.0;
}
#mainframe.faded
{
    opacity: 0.0;
}
#mainframe
{
  /* Firefox */
  -moz-transition-property: opacity;
  -moz-transition-duration: 3s;
  /* WebKit */
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 3s;
  /* Standard */
  transition-property: opacity;
  transition-duration: 3s;
}

它由以下脚本控制:

document.getElementById('mainframe').className = "faded";

不幸的是,CSS 中没有参数来设置应该使用哪个步骤,只有整个动画和贝塞尔函数的总时间(慢,快......)。我在jQuery中寻找它,但jQuery似乎也没有这样的参数。

有没有办法设置单帧超时(或者,同样,应该使用多少帧)?

我需要它来尝试提高 iPhone 上的流畅度(我认为更少的步骤 == 更高的性能)。

问候,

I have a CSS that makes fading out effect.

#mainframe.normal
{
    opacity: 1.0;
}
#mainframe.faded
{
    opacity: 0.0;
}
#mainframe
{
  /* Firefox */
  -moz-transition-property: opacity;
  -moz-transition-duration: 3s;
  /* WebKit */
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 3s;
  /* Standard */
  transition-property: opacity;
  transition-duration: 3s;
}

It is controlled by the following script:

document.getElementById('mainframe').className = "faded";

Unfortunately, there is no parameter in CSS, that sets what step should be used, only total time of the whole animation and Bezier function (slow, fast...). I was looking for it in jQuery, but jQuery seems to have no such parameter as well.

Is there a way to set a single frame timeout (or, that is the same, how many frames should be used)?

I need it to try to improve smoothness on iPhone (I presume that lesser steps == higher performance).

Regards,

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

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

发布评论

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

评论(2

我的奇迹 2024-12-17 19:12:09

看起来您正在寻找 css3 关键帧动画提供的功能。

更多信息请访问以下链接:

https://developer.mozilla.org/en/CSS/ CSS_animations

https://developer.mozilla.org/en/CSS/@keyframes

在 webkit 浏览器(safari、chrome)和 FF5+ 中受支持。

Looks like you're looking for the functionality provided by css3 keyframe animations.

More information is available at the following links:

https://developer.mozilla.org/en/CSS/CSS_animations

https://developer.mozilla.org/en/CSS/@keyframes

Supported in webkit browsers (safari, chrome) and FF5+.

顾忌 2024-12-17 19:12:09

您可能想查看一下:Animate.css

You might want to check this out: Animate.css.

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