9

我正在寻找一个按钮的弹出 div。单击按钮时,我希望弹出窗口从按钮中心向外增长,同时滑动到屏幕中心。我认为这应该不会太难,但我在任何地方都找不到任何片段。任何帮助将不胜感激。

感谢 Jamie Dixon 的帮助,我得到了这段代码。

$('#grower').css({
    backgroundColor: '#FFFFFF',
    border: '10px solid #999',
    height: '0px',
    width: '0px',
    color: '#111111',
    fontWeight: 'bold',
    padding: '10px',
    display: 'none',
    position: 'absolute',
    left: $(this).position().left,
    top: $(this).position().top
}).appendTo('#overlay').fadeIn(0).animate({
    position: 'absolute',
    height: '200px',
    width: '600px',
    marginTop: '-120px',
    marginLeft: '-320px',
    display: "",
    top: ((($(parent).height() - $(this).outerHeight()) / 2) + $(parent).scrollTop() + "px"),
    left: ((($(parent).width() - $(this).outerWidth()) / 2) + $(parent).scrollLeft() + "px")
}, 1000);
4

1 回答 1

20

您可以使用带有“scale”作为参数的 show 方法的 jQuery UI。

 $('#growwer').show("scale",{}, 1000);

工作示例

要将元素滑动到页面中心,我创建了 Tony L 的 jQuery 函数的修改版本,可在此处找到:Using jQuery to center a DIV on the screen

工作示例

更新

这是两个动画同时运行的工作示例:

http://jsfiddle.net/wNXLY/1/

为了让它工作,我在animate传入的函数中包含了一个额外的参数:{duration: durationLength, queue: false}

于 2012-04-27T13:25:14.967 回答