如何检测 jQuery 中可用的缓动?

发布于 2024-10-21 13:27:08 字数 111 浏览 2 评论 0原文

我正在编写一个插件,我需要检测缓动是否可用,因为引用不会导致插件失败的缓动。

如果不存在缓动,我将回退到 swing

那么,我该如何解决这个问题呢?

I am writing a plugin and I need to detect if an easing is avaiable, as referencing one which isn't causes the plugin to fail.

If the easing isn't present, I'm going to fallback to swing.

So, how can I figure this out?

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

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

发布评论

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

评论(1

鯉魚旗 2024-10-28 13:27:08

jQuery.easing 有它们。

if ('easeOutBounce' in jQuery.easing) {
  // Good to go
}

例子

$(this).animate(
    {
         bottom: 0
    },
    {
         duration: 100,
         easing: 'easeOutCubic' in $.easing ? 'easeOutCubic' : 'swing'
    }
);

jQuery.easing has them.

if ('easeOutBounce' in jQuery.easing) {
  // Good to go
}

Example

$(this).animate(
    {
         bottom: 0
    },
    {
         duration: 100,
         easing: 'easeOutCubic' in $.easing ? 'easeOutCubic' : 'swing'
    }
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文