The documentation indicates that you can add a duration to the "explode" effect but I get the impression that the duration has a lot more effect on the fade out of the final exploded image than on the process overall. In my test case the explode happens so fast that it doesn't create the desired effect.
In the following example
jQuery(document).ready( function($){
$("#shrink_title").click(function(){
$(this).effect( "explode",
{pieces: 9}, 500 );
});
});
I've varied the duration parameter from 500 to 5000 and for each value the explode function seems to happen instantaneously and then the fade out varies according to the "duration parameter".
Question:
I would like to slow down the explode so that the effect is clearly seen on the page, is there any way to control this part of the effect?
Thanks.