How can I check if a background image is loaded?

后端 未结 10 1527
囚心锁ツ
囚心锁ツ 2020-11-22 07:05

I want to set a background image on the body tag, then run some code - like this:

$(\'body\').css(\'background-image\',\'http://picture.de/image.png\').load(         


        
10条回答
  •  眼角桃花
    2020-11-22 07:39

    https://github.com/alexanderdickson/waitForImages

    $('selector').waitForImages({
        finished: function() {
           // ...
        },
        each: function() {
           // ...
        },
        waitForAll: true
    });
    

提交回复
热议问题