【HTML】canvasタグ - キャンバス

【HTML】canvasタグ - キャンバス

HTMLのcanvasタグをご紹介します。

canvasタグ

canvasタグはキャンバスを表します。
キャンバスはグラフィックやアニメーションを描画することが可能です。

基本構文

<canvas>代替テキスト</canvas>

サンプルコード

<canvas id="board" width="300" height="300">
  青色の正方形
</canvas>

<script type="text/javascript">
    var board = document.getElementById("board");
    const context = board.getContext("2d");
    context.fillStyle = "blue";
    context.fillRect(30, 30, 80, 80);
</script>