问题
How can i turn off the animation effect on this accordion? so that when I click the sections it just opens instantly, rather than slow drop down?
www.immateriallabour.com/EBH-Pub
<script>
$(function() {
$( "#accordion" ).accordion({
collapsible: true
});
({ animate: false });
});
</script>
回答1:
If you want to prevent the accordion animation, you should pass the appropriate property as part of the configuration object, as follows:
$(function () {
$("#accordion").accordion({
collapsible: true,
animate: false
});
});
来源:https://stackoverflow.com/questions/18708549/turn-off-animation-jquery-accordion