这是小提琴。
HTML:
<div id="greeter" class="welcomer">
<h1>This should be centered</h1>
</div>
jQuery:
$(document).ready(function(){
$(window).resize(function(){
$('.welcomer').css({
position:'absolute',
left: ($(window).width() - $('.welcomer').outerWidth())/2,
top: ($(window).height() - $('.welcomer').outerHeight())/2
});
});
// To initially run the function:
$(window).resize();
});
</p>
它的工作方式似乎存在错误。有时它会居中,有时它只会垂直或水平居中。我是 javascript 和 jquery 的新手,我做错了什么吗?