$('#btnLoad').click(function() { // アニメーションGIFを表示する $('#loader').empty().addClass('loading').show(); // 3秒間スリープする var t = setTimeout(loadImage, 3000); }); // イメージをロードする function loadImage() { var img = new Image(); $(img).load(function() { $(this).hide(); $('#loader').removeClass('loading').append(this); $(this).fadeIn(); }) .error(function() { alert('error'); }) .attr('src', 'jQuery/imageLoading/images/jQueryUI.png'); }