如何更改 jQuery Accordion 的动画风格?
有没有办法更改 jQuery 手风琴使用的默认动画?它似乎是“幻灯片”,但我想使用弹跳或下降效果。
这是我当前的代码:
$("#accordion").accordion({
autoHeight: false,
collapsible: true,
event: 'click',
active: 4
});
我想将其从幻灯片更改为下降或弹跳。
Is there a way to change the default animation that jQuery accordion uses? It appears to be "slide" but I'd like to use a Bounce or Drop effect.
Here's my current code:
$("#accordion").accordion({
autoHeight: false,
collapsible: true,
event: 'click',
active: 4
});
I'd like to change this from a slide to a drop or a bounce.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
动画
选项来实现此目的,例如,要获得弹跳:默认为
'slide'
,您可以在此处查看演示。You can use the
animated
option for this, for example to get your bounce:The default is
'slide'
, you can view a demo here.如果您想要更多动画样式,可以使用 JQuery UI 效果。是的,那里也有反弹和掉落效果。
注意:您还可以使用
animate 构建自己的动画样式
方法。You can use the JQuery UI effects if you want more animations styles. And yes there are bounce and drop effects there too.
Note: You can also construct your own animations styles using
animate
method.