Turn off animation Jquery Accordion

2019-07-23 05:12发布

问题:

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
     });
 });