一、自定義畫筆樣式
如果想為形狀圖上顏色,需要使用以下兩個重要的屬性。
fillstyle : 設(shè)置下來所有fill操作的默認顏色。
strokestyle : 設(shè)置下來所有stroke操作的默認顏色。
二、繪制具有顏色和透明度的矩形
代碼如下:
<!doctype html>
<html>
<head>
<meta http-equiv=content-type content=text/html; charset = utf-8>
<title>html5</title>
<script type=text/javascript charset = utf-8>
//這個函數(shù)將在頁面完全加載后調(diào)用
function pageloaded()
{
//獲取canvas對象的引用,注意tcanvas名字必須和下面body里面的id相同
var canvas = document.getelementbyid('tcanvas');
//獲取該canvas的2d繪圖環(huán)境
var context = canvas.getcontext('2d');
//繪制代碼將出現(xiàn)在這里
//設(shè)置填充顏色為紅色
context.fillstyle = red;
//畫一個紅色的實心矩形
context.fillrect(50,50,100,40);
//設(shè)置邊線顏色為綠色
context.fillstyle = green;
//畫一個綠色空心矩形
context.strokerect(120,100,100,35);
//使用rgb()設(shè)置填充顏色為藍色
context.fillstyle = rgb(0,0,255);
//畫一個藍色的實心矩形
context.fillrect(80,230,100,40);
//設(shè)置填充色為黑色且alpha值(透明度)為0.2
context.fillstyle = rgba(0,0,0,0.2);
//畫一個透明的黑色實心矩形
context.fillrect(300,180,100,50);
}
</script>
</head>
<body onload=pageloaded();>
<canvas width = 500 height = 300 id = tcanvas style = border:black 1px solid;>
<!--如果瀏覽器不支持則顯示如下字體-->
提示:你的瀏覽器不支持<canvas>標簽
</canvas>
</body>
</html>
更多信息請查看IT技術(shù)專欄