Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I change the animation style of a jQuery Accordion?

Is there a way to change the default animation that jQuery accordion uses? It appears to be "slide" but I'd like to use a Bounce or Drop effect.

Here's my current code:

$("#accordion").accordion({
    autoHeight: false,
    collapsible: true,
    event: 'click',
    active: 4
});

I'd like to change this from a slide to a drop or a bounce.

like image 239
Travis Smith Avatar asked Oct 15 '22 05:10

Travis Smith


1 Answers

You can use the animated option for this, for example to get your bounce:

$("#accordion").accordion({ 
  animated: 'bounceslide',
  autoHeight: false, 
  collapsible: true, 
  event: 'click', 
  active: 4
});

The default is 'slide', you can view a demo here.

like image 153
Nick Craver Avatar answered Oct 19 '22 08:10

Nick Craver