问题
I would like my jquery accordion tab animate more smoothly. How do I change the speed?
回答1:
The full documentation can be found here including how to control animation properties.
回答2:
$('.#tab').accordion({speed:"slow"});
回答3:
This should work:
$('.yourAccordion').accordion({ speed: 'slow'});
回答4:
The key to the smooth action is the heightStyle
, e.g.
$( "#accordion" ).accordion({
heightStyle: "content"
});
来源:https://stackoverflow.com/questions/8679826/how-to-make-my-jquery-accordion-animate-smoother