スクリプトは次のとおりです。
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経由で配置する
- それを示す。
コードが機能しません。