Canvas 繪圖 API 都沒有定義在 <canvas> 元素本身上,而是定義在通過畫布的 getContext() 方法獲得的一個“繪圖環境”對象上。
Canvas API 也使用了路徑的表示法。但是,路徑由一系列的方法調用來定義,而不是描述為字母和數字的字符串,比如調用 beginPath() 和 arc() 方法。
一旦定義了路徑,其他的方法,如 fill(),都是對此路徑操作。繪圖環境的各種屬性,比如 fillStyle,說明了這些操作如何使用。
使用Canvas畫中國國旗,代碼:
XML/HTML Code復制內容到剪貼板
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>中國標准國旗</title>
- </head>
- <body>
- <canvas id="canvas" width="600" height="400"></canvas>
-
- <script type="text/javascript">
- // 使用HTML5繪制標准五星紅旗
- var canvas = document.getElementById("canvas");
- var context = canvas.getContext('2d');
- var width = canvas.width;
- var height = width * 2 / 3;
- var w = width / 30;//小網格的寬
- context.fillStyle = "red";
- context.fillRect(0, 0, width, height);
- var maxR = 0.15, minR = 0.05;//
- var maxX = 0.25, maxY = 0.25;//大五星的位置
- var minX = [0.50, 0.60, 0.60, 0.50];
- var minY = [0.10, 0.20, 0.35, 0.45];
- // 畫大 ☆
- var ox = height * maxX, oy = height * maxY;
- create5star(context, ox, oy, height * maxR, "#ff0", 0);//繪制五角星
- // 畫小 ★
- for (var idx = 0; idx < 4; idx++) {
- var sx = minX[idx] * height, sy = minY[idx] * height;
- var theta = Math.atan((oy - sy) / (ox - sx));
- create5star(context, sx, sy, height * minR, "#ff0", -Math.PI / 2 + theta);
- }
- //輔助線
- context.moveTo(0, height / 2)
- context.lineTo(width, height / 2);
- context.stroke();
- context.moveTo(width / 2, 0);
- context.lineTo(width / 2, height);
- context.stroke();
- //畫網格,豎線
- for (var j = 0; j < 15; j++) {
- context.moveTo(j * w, 0);
- context.lineTo(j * w, height / 2);
- context.stroke();
- }
- //畫網格,橫線
- for (var j = 0; j < 10; j++) {
- context.moveTo(0, j * w);
- context.lineTo(width / 2, j * w);
- context.stroke();
- }
- //畫大圓
- context.beginPath();
- context.arc(ox, oy, maxR * height, 0, Math.PI * 2, false);
- context.closePath();
- context.stroke();
- // 畫小圓
- for (var idx = 0; idx < 4; idx++) {
- context.beginPath();
- var sx = minX[idx] * height, sy = minY[idx] * height;
- context.arc(sx, sy, height * minR, 0, Math.PI * 2, false);
- context.closePath();
- context.stroke();
- }
- //大圓中心與小圓中心連接線
- for (var idx = 0; idx < 4; idx++) {
- context.moveTo(ox, oy);
- var sx = minX[idx] * height, sy = minY[idx] * height;
- context.lineTo(sx, sy);
- context.stroke();
- }
- //繪制五角星
- /**
- * 創建一個五角星形狀. 該五角星的中心坐標為(sx,sy),中心到頂點的距離為radius,rotate=0時一個頂點在對稱軸上
- * rotate:繞對稱軸旋轉rotate弧度
- */
- function create5star(context, sx, sy, radius, color, rotato){
- context.save();
- context.fillStyle = color;
- context.translate(sx, sy);//移動坐標原點
- context.rotate(Math.PI + rotato);//旋轉
- context.beginPath();//創建路徑
- var x = Math.sin(0);
- var y = Math.cos(0);
- var dig = Math.PI / 5 * 4;
- for (var i = 0; i < 5; i++) {//畫五角星的五條邊
- var x = Math.sin(i * dig);
- var y = Math.cos(i * dig);
- context.lineTo(x * radius, y * radius);
- }
- context.closePath();
- context.stroke();
- context.fill();
- context.restore();
- }
- </script>
- </body>
- </html>
以上就是本文的全部內容,希望對大家的學習有所幫助。