答案 0 :(得分:0)
#css
img{
display: none;
}
#JS
$(document).ready(function(){
$('img').on('load', function(){
$(this).fadeIn();
}
}
答案 1 :(得分:0)
如果您担心加载时间,请使用CSS Sprite,删除etag,优化网络图像。尽可能使用CSS而不是图像。缓存你的资源,使用CDN,你也可以尝试像stackoverflow.com这样的设计,你可以做更多。