jQuery:我如何定位图像?

时间:2010-07-09 17:56:23

标签: jquery css

我有这个:

function startLoad(object_id) {
$j('div#'+object_id).addClass('currently-loading');
var con = $j('div#overlay');
var img = $j('div#loadimg');
var tab = $j('table.app');
con.height(tab.height() - 30);
con.width(tab.width());
con.css('display', 'block');

img.css('margin-left', (con.width() / 2 - 36) + 'px');
img.css('margin-top', (con.height() / 2 - 36) + 'px');
//alert( (con.width() / 2 - 36)+" "+(con.height() / 2 - 36))

}

当我取消注释警报时,它会显示正确的尺寸...... 我试过左边,边距左边,有和没有px。 (有些是顶部的)

我做错了什么?

一切正常,但img位于包含它的div的左上角。

2 个答案:

答案 0 :(得分:1)

我刚刚发布了同一个问题here的答案。

[See it in action]

<强> HTML

<div id="overlay">
  <img src="http://www.sanbaldo.com/wordpress/wp-content/bigrotation2.gif" 
    id="img-load" />
</div>

<强> CSS

#overlay { 
  display:none; 
  position:absolute; 
  background:#fff; 
}
#img-load { 
  position:absolute; 
}

Javascript

$t = $("#table"); // CHANGE it to the table's id you have

$("#overlay").css({
  opacity : 0.5,
  top     : $t.offset().top,
  width   : $t.outerWidth(),
  height  : $t.outerHeight()
});

$("#img-load").css({
  top  : ($t.height() / 2),
  left : ($t.width() / 2)
});

然后当你装载东西时,你只需说:

$("#overlay").fadeIn();

当你完成

$("#overlay").fadeOut();

答案 1 :(得分:0)

使用左侧和顶部您需要绝对定位图像。

position:absolute;

容器元素也应该有位置:relative;设置就可以了

使用此选项并尝试在代码中使用top,left而不是margin-top和margin-left;