2014-12-03 77 views
1

我想從畫布的頂部向底部移動矩形。但不知何故,畫布不會被清除。哪裏不對?畫布 - 清除矩形不起作用

js fiddle

JS

(function animloop(){ 
    requestAnimFrame(animloop); 
    redraw(); 
})(); 


    function redraw() { 

     ctx.clearRect(0,0,canvasWidth, canvasHeight); 
     ctx.rect(20,y,50,50); 
     ctx.fillStyle="red"; 
     ctx.fill(); 
     y += 2; 

    } 

回答