ロゴを水平方向と垂直方向の中央に配置しようとしています。私はこれまでのところ...
<script type="text/javascript">
$(document).ready(function(){
$(window).resize(function(){
$('#theLogo').css({
position:'absolute',
left: ($(window).width() - $('#theLogo').outerWidth())/2,
top: ($(window).height() - $('#theLogo').outerHeight())/2
});
});
$(window).resize();
});
</script>
HTML
<div id="theLogo">
<section id="responsiveLogo" class="logo">September</section>
</div>
私はこのビットを中心にしようとしています:
<section id="responsiveLogo" class="logo">September</section>
ライブ バージョンはhttp://septemberstudio.co.uk/でご覧いただけます。