嗨我想知道是否有一个jquery grow函数与喷涂页面上的样本2 / demo 2相同。
http://labs.adobe.com/technologies/spry/samples/effects/grow_sample.html
不要使用喷雾,因为我的大部分网站效果都是jquery。
谢谢!
答案 0 :(得分:1)
jQueryUI中的scale
效果可用于实现此目的。
答案 1 :(得分:0)
我使用.animate()
方法。
请参阅demo here。
<div class="outer">
<div class="inner"> </div>
</div>
$('div.inner').animate({
'margin':'100px'
}, 1000);
步骤以获得完整效果