Try
$(this).toggle("scale", { percent: 0 }, 1000);
or
$(this).hide("scale", {percent: 700, origin: 'center', fade: 'hide' }, 2000);
or
$(this).hide("scale", {}, 1000);
Note that this will not work for elements with background images. Apply it directly to images or css-styled divs and will work out of the box!
source
share