これがフィドルです。
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を初めて使用しますが、間違っていることはありますか?