Hi I was wondering if there was a jquery grow function that was the same as sample 2/demo 2 on the spray page here.
http://labs.adobe.com/technologies/spry/samples/effects/grow_sample.html
Dont want to use spray as I have most of my site effects with jquery.
thanks!
The scale
effect in jQueryUI can be used to achieve this.
I use the .animate()
method for this.
See demo here.
<div class="outer">
<div class="inner"> </div>
</div>
$('div.inner').animate({
'margin':'100px'
}, 1000);
Steps for full effect