一、先來(lái)簡(jiǎn)單介紹畫(huà)時(shí)鐘需要的canvas知識(shí)
1.在HTML頁(yè)面中添加canvas元素,必須定義canvas元素的id屬性值以便接下來(lái)的調(diào)用。
HTML代碼:
<canvas id="canvas" class="canvas" width="400" height="400" border:></canvas>
2.使用id尋找canvas元素,在js代碼中使用document.getElementById()等方法獲取id。
var canvas = document.getElementById("canvas");
3.通過(guò)canvas元素的getContext方法來(lái)獲取其上下文(Context),即創(chuàng)建Context對(duì)象,以獲取允許繪畫(huà)的2D環(huán)境。
var ctx = canvas.getContext("2d");
4.先來(lái)認(rèn)識(shí)一下canvas的繪制方法。
(1)繪制矩形的兩種方法:fillRect 和 strokeRect
前者用于繪制用顏色填充(fill)區(qū)域的矩形,后者用于繪制輪廊(stroke)或線條。圖形指定顏色用到了兩個(gè)屬性,即fillStyle 和 strokeStyle,前者用于指定要