程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> html5-用<canvas>做鐘表的問題

html5-用<canvas>做鐘表的問題

編輯:編程綜合問答
用<canvas>做鐘表的問題

<!doctype html>



canvas實例1-時鐘


您的浏覽器不支持canvas標簽

var clock = document.getElementById('clock'); var cxt = clock.getContext('2d'); // 表盤(藍色) cxt.beginPath(); cxt.lineWidth = 10; cxt.strokeStyle= "blue"; cxt.arc(250,250,200,0,360,false); cxt.stroke(); cxt.closePath(); // 刻度 // 時刻度開始 for(var i=0; i<12; i++) { cxt.save(); cxt.lineWidth = 7; cxt.strokeStyle = "#000"; cxt.translate(250,250); cxt.rotate(i*30*Math.PI/180); cxt.beginPath(); cxt.moveTo(0,-170); cxt.lineTo(0,-190); cxt.stroke(); cxt.closePath(); cxt.restore(); } // 時刻度結束 // 分刻度開始 for(var i=0; i<60; i++) { cxt.save(); cxt.lineWidth = 5; cxt.strokeStyle = "#000"; cxt.translate(250,250); cxt.rotate(i*6*Math.PI/180); cxt.beginPath(); cxt.moveTo(0,-180); cxt.lineTo(0,-190); cxt.stroke(); cxt.closePath(); cxt.restore(); } // 分刻度結束 // 時針開始 cxt.save(); cxt.beginPath(); cxt.lineWidth = 7; cxt.strokeStyle = "#000"; cxt.translate(250,250); cxt.rotate(90*Math.PI/180); cxt.moveTo(0,-140); cxt.lineTo(0,10); cxt.stroke(); cxt.closePath(); cxt.restor(); // 時針結束 // 分針開始 cxt.save(); cxt.beginPath(); cxt.lineWidth = 5; cxt.strokeStyle = "#000"; cxt.translate(250,250); cxt.rotate(180*Math.PI/180); cxt.moveTo(0,-160); cxt.lineTo(0,15); cxt.stroke(); cxt.closePath(); cxt.restor(); // 分針結束



請各位老師幫忙看看,分針是復制時針的代碼後進行了修改,為什麼分針做不出來,請老師指教!非常感謝!

最佳回答:


cxt.restor();應為cxt.restore();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved