Turn off animation Jquery Accordion

孤街醉人 提交于 2019-12-10 18:26:10

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!