DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> HTML5實例教程:canvas標簽繪制矩形實例代碼
HTML5實例教程:canvas標簽繪制矩形實例代碼
編輯:HTML和Xhtml     

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <title>html5-canvas標簽--繪制矩形</title> </head> <body> <canvas id="1" width="200" height="200"></canvas>
<script type="text/javascript"> window.onload = function(){ var canva =document.getElementById('1') var content =canva.getContext('2d') content.fillStyle = "#ccc";//填充canvas的背景顏色 content.fillRect(0, 0, 200, 200);//參數分別表示 x軸,y軸,寬度,高度 content.lineWidth = 4;//邊框寬度 content.strokeStyle = "#fff";//邊框顏色 content.strokeRect(50,50,100,100);//邊框坐標及大小 content.fillStyle = "#f00";//矩形填充顏色 content.fillRect(50,50,100,100);//矩形坐標及大小 }
</script> </body> </html>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved