Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I draw an AJAX loader image having animation on canvas but it is not showing animation and also I want to change background color of canvas to black.How can i do this any help please?

This is part of the code i used:

{
    ......
    var xhr = new XMLHttpRequest();
    xhr.open('GET', url, true);
    xhr.responseType = 'arraybuffer';
    var canvas = document.getElementById('loadimageCanvas');
    var context = canvas.getContext('2d');
    var imageObj = new Image();
    imageObj.src = 'images/ajax-loader-1.gif';
     xhr.onload = function(e) {
      jQuery('#imageCanvas').hide();
      jQuery('#loadimageCanvas').show();
      context.drawImage(imageObj,150,150);
       .......
       .......
      };
   xhr.send();
   ...
   }

<body>
 <canvas id="loadimageCanvas" style="display:block">Your browser doesn't support canvas. </canvas>
</body>
share|improve this question
use imgObj.onload = function() { //your code when image is correctly loaded } – Thomas Haratyk Dec 4 '12 at 14:17
You can change the background color of the canvas in CSS: #loadimageCanvas{background:#000;} – Shmiddty Dec 5 '12 at 16:56
Also, I assume your loader image is animated. Why not just put it in the HTML? The canvas will only draw the first frame, and it won't be animated. – Shmiddty Dec 5 '12 at 16:58
@shmiddty no it is required to put in canvas.I used canvas loader js file now it is working .Thanks for responding. – Madhavi Mangapati Dec 6 '12 at 5:31
Now iam facing one more problem with canvas. – Madhavi Mangapati Dec 6 '12 at 5:33
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.