有没有办法改变jQuery手风琴使用的默认动画?它似乎是“幻灯片”,但我想使用Bounce或Drop效果.
这是我目前的代码:
$("#accordion").accordion({
autoHeight: false,collapsible: true,event: 'click',active: 4
});
我想将它从幻灯片更改为掉落或反弹.
最佳答案
例如,您可以使用
原文链接:https://www.f2er.com/jquery/427864.htmlanimated
option for this来获得反弹:
$("#accordion").accordion({
animated: 'bounceslide',autoHeight: false,active: 4
});
默认为’slide’,you can view a demo here.