iT邦幫忙

0

js/jquery images load 一問

  • 分享至 

  • xImage

大家好,

請問一下, 如果要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';
        });
    })
不明 檢舉
要用 Promise.any(),用 jQuery 應該沒辦法做到
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友回答

立即登入回答