Jump to content
  • 0

Предзагрузка массива изображений


alex_web64
 Share

Question

Здравствуйте.

У меня есть такой код, упрощенный для примера:
 

for(var i = 0; i < 10; i++){	for(var j = 0; j < 10;j++){		var img = new Image();		img.onload = (function (i,j,img) {			return function () {				// do something			};        }(i,j,img));			};};

который я использую для предзагрузки изображений, которые потом рисую на канве. Но здесь нет кода, который бы отслеживал, когда все изображения будут использованы.

Я его немного усовершенствовал, но у меня не получается увеличивать переменную loaded, она всегда равна 0 и после увеличивается на 1, тоесть равна 20 она никогда не будет.

var loaded = 0;for(var i = 0; i < 10; i++){    for(var j = 0; j < 10;j++){        var img = new Image();        img.onload = (function (i,j,img) {            return function () {                loaded++;                if(loaded == 20) callback();            };        }(i,j,img));            };};

https://jsfiddle.net/tdsw6z5w/2/

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy