一、先來簡單介紹畫時鐘需要的canvas知識

1.在HTML頁面中添加canvas元素,必須定義canvas元素的id屬性值以便接下來的調用。

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.通過canvas元素的getContext方法來獲取其上下文(Context),即創(chuàng)建Context對象,以獲取允許繪畫的2D環(huán)境。

var ctx = canvas.getContext("2d");

4.先來認識一下canvas的繪制方法。

(1)繪制矩形的兩種方法:fillRect 和 strokeRect

  前者用于繪制用顏色填充(fill)區(qū)域的矩形,后者用于繪制輪廊(stroke)或線條。圖形指定顏色用到了兩個屬性,即fillStyle 和 strokeStyle,前者用于指定要

網友評論