我在向简单的jQuery库实现加载动画时遇到问题。
以下是链接,如果它更容易。
我的网站:jpatrolla.com(图库位于投资组合部分)
简单的Jquery图库:http://papermashup.com/jquery-gallery-update-with-title-and-description/
jQuery图片加载:http://jqueryfordesigners.com/image-loading/
最后,由于我糟糕的编码,我试图提出的脚本:
$(function(){
$(".image").click(function(){
var image = $(this).attr("rel");
var description = $(this).attr("content");
$('#loader').removeClass('loading');
$('#gallery').hide();
$('#gallery').fadeIn('slow');
$('#image').html('<img src="' + image + '"/>');
$('#description').html(description);
return false;
});
var img = new Image();
$(img).load(function(){
$(this).hide();
})
.error(function(){
})
.attr('src', 'images/headshot.jpg');
})
});
如果有人能够指出我正确的方向,或者发现我做错了哪里/哪里,我们将不胜感激!