キャンバスサーチライトエフェクトのサンプルコード
2022-02-01 09:20:51
canvas の clip() メソッドは、元の canvas から任意の形状や大きさを切り取るために使用されます。いったん領域が切り取られると、それ以降の描画はすべて切り取られた領域に制限されます (キャンバスの他の領域にはアクセスできません)。
また、clip() メソッドを使用する前に save() メソッドを使用して現在のキャンバス領域を保存し、後で restore() メソッドを使用して復元することもできます。
次に、clip()メソッドを使ってサーチライト効果を実装します。
</iframe>
<button id="btn">transform</button>
<button id="con">pause</button>
<canvas id="canvas" width="400" height="290" style="border:1px solid black">Current browser does not support canvas Please change your browser and try again</canvas>
<script> btn.onclick = function(){history.go();}
con.onclick = function(){ if(this.innerHTML == 'pause'){ this.innerHTML = 'resume';
clearInterval(oTimer);
}else{ this.innerHTML = 'pause';
oTimer = setInterval(fnInterval,50);
}
} var canvas = document.getElementById('canvas'); //store the canvas width and height
var H=290,W=400; //store the searchlight
var ball = {}; //store the photo
var IMG; //store the photo address
var URL = 'http://sandbox.runjs.cn/uploads/rs/26/ddzmgynp/chunfen.jpg'; function initial(){ if(canvas.getContext){ var cxt = canvas. getContext('2d'); var tempR = Math.floor(Math.random()*30+20); var tempX = Math.floor(Math.random()*(W-tempR) + tempR); var tempY = Math.floor( Math.random()*(H-tempR) + tempR)
ball = {
x:tempX,
y:tempY,
r:tempR,
stepX:Math.floor(Math.random() * 21 -10),
stepY:Math.floor(Math.random() * 21 -10)
};
IMG = document.createElement('img');
IMG.src = URL;
IMG.onload = function(){
cxt.drawImage(IMG,0,0);
}//Welcome to join the full-stack development exchange circle together to learn and exchange: 582735936
]//For 1-3 years front-end personnel
} //Help break through technical bottlenecks and improve thinking skills
}
}
} function update(){
ball.x += ball.stepX;
ball.y += ball.stepY;
bumpTest(ball);
} function bumpTest(ele){ //left
if(ele.x <= ele.r){
ele.x = ele.r;
ele.stepX = -ele.stepX;
} //right side
if(ele.x >= W - ele.r){
ele.x = W - ele.r;
ele.stepX = -ele.stepX;
} // top side
if(ele.y <= ele.r){
ele.y = ele.r;
ele.stepY = -ele.stepY;
} // lower side
if(ele.y >= H - ele.r){
ele.y = H - ele.r;
ele.stepY = -ele.stepY;
}
} function render(){ //reset the height of the canvas to clear it
canvas.height = H; if(canvas.getContext){ var cxt = canvas.getContext('2d');
cxt.save(); // black out the background of the canvas
cxt.beginPath();
cxt.fillStyle = '#000';
cxt.fillRect(0,0,W,H); //render the searchlight
cxt.beginPath();
cxt.arc(ball.x,ball.y,ball.r,0,2*Math.PI);
cxt.fillStyle = '#000';
cxt.fill();
cxt.clip(); //as a result of using clip(), the background image of the canvas will appear in the clip() area
cxt.drawImage(IMG,0,0);
cxt.restore();
}//Welcome to join the full-stack development exchange circle to learn together: 582735936
]//For 1-3 years front-end personnel
} //Help break through technical bottlenecks and improve thinking skills
}
}
initial();
clearInterval(oTimer); function fnInterval(){ //update the motion state
update(); //render
render();
} var oTimer = setInterval(fnInterval,50);
</script>
以上、本記事の全内容をご紹介しましたが、皆様の学習のお役に立てれば幸いです。また、Script Houseをより一層ご支援いただければ幸いです。
関連
-
HTML5の再適応スキームとビューポート適応の問題点を解説
-
html5 モバイル 長押し禁止 画像保存 実装
-
HTML5でtitleタグに小さなアイコンを設定する方法
-
Html5ナビゲーションバー天井画の原理と対照的な実装
-
Html5は、コンテナは、画面の高さや残りの高さの適応的なレイアウトの実装を埋めることができます
-
HD画面でのキャンバスサイズリセットによる不具合の解消について
-
ページ下部のHTML5フッターの詳細(CSS+JS)
-
html5 canvas 自動改行でテキストを描画するサンプルコード
-
html5 canvasによる画像圧縮のサンプルコード
-
キャンバスでDVDスタンバイのアニメーションを作成するコード
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン