各ステップでの完全な円の再描画を除いて、他に修正はありますか?
要するに、クロスブラウザーで動作させ、半透明の色で見栄えを良くしたい場合はそうではありません.
つまり、コードを変更して描画ごとにクリアし、開始角度ステップを排除します: http://jsfiddle.net/pcNzb/10/
!!! でマークされた 2 つのコメントを参照してください。
var interval=setInterval(function(){
if(stop) {
return;
}
// Log current state
log.prepend('<tr><td>We are at PIradians '+moveToRad/Math.PI+'</td><td>, radians '+moveToRad+'</td><td>, degrees '+Math.round(moveToRad*180/Math.PI)+'</td></tr>');
// console.log('We are at PIradians',moveToRad/Math.PI,', radians',moveToRad,', degrees',Math.round(moveToRad*180/Math.PI));
// Clear after full cycle
if(moveToRad>=fullCycle){
cycle();
}
clear(); // !!! gotta clear!
// Create arc
// 0.01 fix offset, to remove that gap between arc parts
ctx.arc(x(),y(),radius,-moveFromRad,-moveToRad,antiClockwise);
// Draw arc line
ctx.stroke();
// Recalculate text width
txtsizes=ctx.measureText(cycles);
// Text width/2 and font-size / 3 to ~center the text in circle
ctx.fillText(cycles, x(-txtsizes.width/2), y(font_height/3));
// Don't redraw full arc from the start, draw from the last point
//moveFromRad+=step; // !!! no more me!
// Increment radian for the next step
moveToRad+=step;
ctx.beginPath();
},period);