开发者

Jquery - I have problem with accordion

开发者 https://www.devze.com 2023-04-01 04:20 出处:网络
I have done accordion, see the jsfiddle link, when click on the view accordion div will show. In that accordion div , i have a another block with title \"upstage\" and \"downstage\". when accordion d

I have done accordion, see the jsfiddle link, when click on the view accordion div will show.

In that accordion div , i have a another block with title "upstage" and "downstage". when accordion div show the inner block comes from the left to right, and hide from the right to left.

How to stop that animation. i need that inner 开发者_高级运维block should place in the right side.

please help me out

Here jsfiddle link: http://jsfiddle.net/thilakar/RNqEs/1/


Change

$(".accordionBlock").toggle('fast');

to

$(".accordionBlock").toggle();

to remove the animation. This produces a show/hide effect.

0

精彩评论

暂无评论...
验证码 换一张
取 消