使用jQuery的ExtJS窗口动画

ExtJS window animations with jQuery

本文关键字:窗口 动画 ExtJS jQuery 使用      更新时间:2023-09-26

我需要用jQuery实现以下效果:

http://dev.sencha.com/deploy/ext-3.4.0/examples/desktop/desktop.html

点击"网格窗口"或"手风琴窗口"图标将以"缩放"方式从页面左下角到中间打开窗口。

我需要做的是对jQuery做同样的操作,只是将打开的窗口移动到页面的右下位置。

有人能告诉我如何实现这一点吗?或者是否已经有了jQuery插件?

谢谢!

第一步可以使用.animate()更新窗口的top, left, width, height属性:

// compute target x,y coordinates of the bottom right corner
$('#window').animate({
    top: target.top,
    left: target.left,
    width: 0,
    height: 0
});

小提琴