摘要: Html5 Canvas 动画时钟,具体代码如下:1 clock();2 setInterval(clock, 1000);View Code 1 function clock() { 2 var now = new Date(); 3 4 ctx.save(); 5 ctx.clearRect(0, 0, 150, 150); 6 ctx.translate(75, 75); 7 ctx.scale(0.4, 0.4); 8 ctx.rotate... 阅读全文
posted @ 2011-07-20 11:35 QZB 阅读(1451) 评论(2) 推荐(3) 编辑