【javascript】Canvasを使ってみる
2581 ワード
準備
<canvas id="sample">
コンテキストオブジェクトを取得
let canvas = document.getElementById('sample');
let context = canvas.getContext('2d');
<canvas id="sample">
let canvas = document.getElementById('sample');
let context = canvas.getContext('2d');
getContextの第1引数に何を渡すかでコンテキストオブジェクトの種類が決まる。
渡す値 | 説明 |
---|---|
2d | 2次元グラフィックスの描画に使用 |
webgl、webgl2 | 3次元グラフィックスの描画に使用 |
図形を書く
長方形
長方形の関数
種類 | 説明 |
---|---|
fillRect(x,y,width,height) | 長方形(色付き) |
strokeRect(x,y,width,height) | 長方形(枠線のみ) |
clearRect(x,y,width,height) | 指定された領域を消去し、完全な透明にする |
例
//左から40上から60の位置に縦50横50の正方形を描く
context.fillRect(40,60,50,50);
参考
Author And Source
この問題について(【javascript】Canvasを使ってみる), 我々は、より多くの情報をここで見つけました https://qiita.com/oouaioi/items/f93ff0853dbf71078371著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .