jQuery 添加缓动时不起作用 属性
jQuery not working when adding ease property
我目前正在为我的网站制作 jQuery 动画,但缓动 属性 不起作用。
代码如下:
$(window).load(function()
{
$('div').animate({'height': '10px'}, 2000, 'easeInOutQuad');
}
);
不幸的是,由于某种原因,jQuery 似乎无法识别 .animate()
的 ease
属性,向我显示了很多错误,但仅当我放轻松属性!我需要安装一些特别的东西吗?我只参考了jQuery 1.11.2.
请帮忙。
来自 jQuery 文档:
The only easing implementations in the jQuery library are the default, called swing, and one that progresses at a constant pace, called linear.
您想要使用的缓动在 jQuery 库中根本没有实现。可以使用插件添加额外的缓动选项(例如 jQuery UI)
我目前正在为我的网站制作 jQuery 动画,但缓动 属性 不起作用。
代码如下:
$(window).load(function()
{
$('div').animate({'height': '10px'}, 2000, 'easeInOutQuad');
}
);
不幸的是,由于某种原因,jQuery 似乎无法识别 .animate()
的 ease
属性,向我显示了很多错误,但仅当我放轻松属性!我需要安装一些特别的东西吗?我只参考了jQuery 1.11.2.
请帮忙。
来自 jQuery 文档:
The only easing implementations in the jQuery library are the default, called swing, and one that progresses at a constant pace, called linear.
您想要使用的缓动在 jQuery 库中根本没有实现。可以使用插件添加额外的缓动选项(例如 jQuery UI)