html canvas標籤用於定義圖形,例如圖表和其他圖像,
canvas是什麼意思? html canvas標籤怎麼用?
作用:定義圖形,例如圖表和其他圖像。
說明:
註解:
html canvas標籤 範例
<!DOCTYPE HTML> <html> <body> <canvas id="myCanvas">your browser does not support the canvas tag </canvas> <script type="text/javascript"> var canvas=document.getElementById('myCanvas'); var ctx=canvas.getContext('2d'); ctx.fillStyle='#FF0000'; ctx.fillRect(0,0,80,100); </script> </body> </html>
效果:
##
以上是html canvas標籤怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!