偏离中心jQuery位置

时间:2013-06-17 15:22:51

标签: jquery position modal-dialog

我正在尝试将对话框放置在距离中心100 px的位置。使用jQuery定位工具是否可行,或者我是否需要手动查找窗口大小和位置?

$dialog.dialog("option", "position", "center+100");

2 个答案:

答案 0 :(得分:0)

如果您使用的是jquery Ui对话框,则会有一个名为position()

的选项
$( ".selector" ).dialog( "option", "position", [450,200] );//example measurements

如果您希望对所有显示器尺寸更加通用,请使用$(window).height()width()

并为它们添加100像素。

或者只是

$('#selector').dialog({
  position: ['top', 100]   //100 px down from the top.
});

答案 1 :(得分:0)

您需要将中心分为水平和垂直定位。

$dialog.dialog("option", "position", "center+100 center+100");