大家好,
請問一下, 如果要load一堆images, 如何可以當某一個image load 之後才做一個事情, e.g.
就像第三個先load好, 就把loading 圖關掉, 其他還在load的就不管他.謝謝
這個是我寫的...
$('.simg').each(function() {
$(this).parents("td").append(spinnerTemplate);
$(this).on("load",function () {
$(this).siblings('.overlay').hide();
});
$(this).on("error",function() {
// image was broken, replace with your new image
$(this).siblings('.overlay').hide();
this.src = 'https://dummyimage.com/150X112.5/d1dcff/627ed1.png';
});
})