关闭动画 Jquery 手风琴 [英] Turn off animation Jquery Accordion

查看:34
本文介绍了关闭动画 Jquery 手风琴的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何关闭这个手风琴的动画效果?这样当我单击这些部分时,它会立即打开,而不是缓慢下拉?

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

www.immateriallabour.com/EBH-Pub

      <script>
$(function() {
$( "#accordion" ).accordion({
  collapsible: true
});
({ animate: false });
});
</script>

推荐答案

如果你想阻止手风琴动画,你应该传递适当的属性作为配置对象的一部分,如下:

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

这篇关于关闭动画 Jquery 手风琴的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆