在 jquery ui 显示上应用缓动?
我正在尝试对 jquery ui 显示效果应用缓动。理想情况下,API 看起来像这样:
$(this).show('scale', {
duration: 1000,
easing: 'easeOutBounce',
});
当前该元素位于 display:none。我需要用缩放效果来显示它并有一个缓动。
我是否必须分开命令或者是否有类似的东西可以工作?
谢谢。
I'm trying to apply easing on a jquery ui show effect. Ideally the api would look something like this:
$(this).show('scale', {
duration: 1000,
easing: 'easeOutBounce',
});
Currently the element is at display:none. I need to show it with the scaling effect and have an easing.
Do I have to separate the commands or is there something like this that would work?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我已经在 jsfiddle 上测试了它并且有效:
http://jsfiddle.net/tenshimsm/AUM6d/1/
I've tested it on jsfiddle and works:
http://jsfiddle.net/tenshimsm/AUM6d/1/
您需要在
easeOutBounce
之后删除逗号(,)
然后它应该可以工作You need to remove comma
(,)
aftereaseOutBounce
then it should work检查firebug,在使用代码示例时它添加了一些隐藏字符:
Check firebug, when using code example it adds some hidden characters: