我有一个jQuery UI Accordion,我试图在点击时使用JQuery效果“爆炸”。由于某种原因,效果仅显示在左侧。有什么想法吗?
$(this).effect('explode', { pieces: '50' }, 800);
此外,我目前正在以200px的固定高度设置'ui.newContent'的高度,如下所示:
ui.newContent.delay(000).animate({ height: 200,'padding-top': 20,'padding-bottom': 20}, 700);
但我需要的是能够为每个内容div的'自然'全高度设置动画。
我尝试使用:
var fullHeight = $(this).height()
但我无法让它发挥作用。
这是一个现场演示:http://jsfiddle.net/ifthatdoesntdoit/Cb68E/10/
由于