脚本是:
function correctMe(){
var top_move = parseInt($('#image').css('height')) / 2;
$('#image').css({position : 'relative', top: '50%', marginTop: '-' + top_move + 'px'});
$('#image').fadeIn(100);
}
html是:
<img id="image" onload="correctMe()" src="image.jpg" style="display: none;"/>
我的目标是:
- 加载图像
- 通过 jQuery 定位它
- 展示下。
我的代码不起作用。