html5绘制时钟动画

2020-04-21 23:10:10易采站长站整理

cxt.fill();
//cxt.strokeStyle=”red”;
cxt.stroke();</p>
<p> cxt.restore();</p>
<p>}
function drawClock(){
cxt.clearRect(0,0,500,500);
drawNow();
}
drawNow();
setInterval(drawClock,1000);