我正在编写一个插件,我需要检测是否可以使用缓动,因为引用的缓存不会导致插件失败。
如果没有宽松,我将回退到swing
。
那么,我怎么能弄清楚这一点呢?
答案 0 :(得分:4)
jQuery.easing
有他们。
if ('easeOutBounce' in jQuery.easing) {
// Good to go
}
$(this).animate(
{
bottom: 0
},
{
duration: 100,
easing: 'easeOutCubic' in $.easing ? 'easeOutCubic' : 'swing'
}
);