我有这个:
$('h1').animate({
//stuff to be changed,
}, {
duration: 1000,
queue: false
})
当我将其更改为以下内容时,它不会接受:
{
duration: 1000,
queue: false,
easing: easeOutBounce
}
当提供easing
作为字符串时,我收到此错误:
未捕获的TypeError:n.easing [this.easing]不是函数
我应该如何放置宽松类型?
答案 0 :(得分:2)
宽松应该是一个字符串,如下所示:
{
duration: 1000,
queue: false,
easing: 'easeOutBounce'
}
.animate()
状态下的API文档:
缓和(默认:
swing
)输入:字符串
一个字符串,指示用于转换的缓动函数。