javascript canvasで画像を繰り返して表示する
- 作成日 2021.01.14
- 更新日 2022.08.02
- javascript
- javascript
javascriptで、canvasタグを使用して画像を繰り返して表示するサンプルコードを記述してます。
環境
- OS windows10 pro 64bit
- Apache 2.4.43
- ブラウザ chrome 103.0.5060.134
画像を繰り返して表示
「createPattern」を使用すれば、画像を繰り返して表示することが可能です。
<canvas id="cvs" width="750" height="150"></canvas>
<script>
// 2D図形を扱う
const ctx = cvs.getContext('2d');
// Image オブジェクトを生成
const img = new Image; // ()を省略
// 画像を表示
img.src = '150x150.png';
// 画像読み込み完了後に描画
img.onload = () => {
// 画像と繰り返し方法を指定
const pattern = ctx.createPattern(img, 'repeat');
// 塗りつぶし
ctx.fillStyle = pattern;
// fillRect(四角形の左上のx座標, 四角形の左上のy座標, 四角形の幅, 四角形の高さ)
ctx.fillRect(0, 0, 750, 150);
}
</script>
実行結果
createPattern一覧
- repeat : 水平+垂直にパターン繰り返し
- repeat-x : 水平方向にのみ繰り返し
- repeat-y : 垂直方向にのみ繰り返し
- no-repeat : 繰り返ししない
サンプルコード
以下は、
「実行」ボタンをクリックすると、画像を繰り返して表示する
サンプルコードとなります。
※cssには「bootstrap5」を使用してます。「bootstrap5」は、IEのサポートを終了してます。また関数もアロー関数を使用してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css">
</head>
<style>
.main {
margin: 0 auto;
margin-top: 200px;
display: flex;
flex-direction: column;
align-items: center;
font-size: 30px;
}
</style>
<script>
const hoge = () => {
// 2D図形を扱う
const ctx = cvs.getContext('2d');
// Image オブジェクトを生成
const img = new Image; // ()を省略
// 画像を表示
img.src = '150x150.png';
// 画像読み込み完了後に描画
img.onload = () => {
// 画像と繰り返し方法を指定
const pattern = ctx.createPattern(img, 'repeat');
// 塗りつぶし
ctx.fillStyle = pattern;
// fillRect(四角形の左上のx座標, 四角形の左上のy座標, 四角形の幅, 四角形の高さ)
ctx.fillRect(0, 0, 750, 150);
}
}
window.onload = () => {
// クリックイベントを登録
btn.onclick = () => { hoge() }; // document.getElementById('btn');を省略
}
</script>
<body>
<div class="main">
<canvas id="cvs" width="750" height="150"></canvas>
<button id="btn" type="button" class="btn btn-info">
実行
</button>
</div>
</body>
</html>
画像が繰り返し表示されていることが確認できます。
-
前の記事
javascript メソッド名に変数を使用する 2021.01.14
-
次の記事
rails bundle install時エラー「An error occurred while installing sqlite3 (x.x.x), and Bundler cannot continue.」の対処法 2021.01.14
コメントを書く