Home  >  Article  >  Web Front-end  >  Execute event after image loading is complete

Execute event after image loading is complete

小云云
小云云Original
2018-01-18 14:49:022044browse

This article mainly shares with you an example of an image loading completion and then execution event. It has a very good reference value. Let’s follow the editor to have a look. I hope it will be helpful to everyone. I hope it can help everyone.

Examples are as follows:

//图片加载
function load(imgSrc,callback) {
 var imgs = [];
 var c = 0;
 for (var i = 0; i < imgSrc.length; i++) {
  imgs[i] = new Image();
  imgs[i].src = imgSrc[i];
  imgs[i].onload = function(){
   c++
   if(c == imgSrc.length){
    if(callback){
     callback();
    }
   }
  }
 }
 return imgs;
}

Application scenarios: Some pages with many pictures, some pages that need to add loading effects such as progress bars or percentage reading, generally used more on mobile pages

Related recommendations:

How to solve the problem of background image loading

JS image loading example code for two effects

Javascript method to implement image loading from blurry to clear display

The above is the detailed content of Execute event after image loading is complete. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn