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

时间:2011-03-11 07:59:36

标签: jquery easing

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

如果没有宽松,我将回退到swing

那么,我怎么能弄清楚这一点呢?

1 个答案:

答案 0 :(得分:4)

jQuery.easing有他们。

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

实施例

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