Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way in JS to get the progress of a loading image while the image is being loaded? I want to use the new Progress tag of HTML5 to show the progress of loading images.

I wish there was something like:

var someImage = new Image()
someImage.onloadprogress = function(e) { progressBar.value = e.loaded / e.total };
someImage.src = "image.jpg";
share|improve this question
3  
already looked at this? blogs.adobe.com/webplatform/2012/01/13/… – P1nGu1n Jan 8 at 15:43
Possibile duplicate of stackoverflow.com/questions/2515142/… – freedev Jan 9 at 22:15

2 Answers

Try to use the approach described in this article http://blogs.adobe.com/webplatform/2012/01/13/html5-image-progress-events/ Also there is a live sample. As I understand that is you were looking for.

share|improve this answer
Isn't this is the exact same method as the link posted in the comment above? – freedev Jan 9 at 16:28

A more complex solution involve using XHR but it is not supported by all browser. You get the image data from XHR and then you could build a base64 url.

https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest/Using_XMLHttpRequest?redirectlocale=en-US&redirectslug=Using_XMLHttpRequest#Handling_binary_data

share|improve this answer
Isn't this is the exact same method as the link posted in the comment above? – Alex W Jan 8 at 15:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.