브라우저 크기에 따라 Canvas의 크기를 Fit 하려면 아래와 같이 두 가지 방법으로 처리할 수 있다.
// important! for alignment, you should make things
// relative to the canvas' current width/height.
function draw() {
var ctx = (a canvas context);
ctx.canvas.width = window.innerWidth;
ctx.canvas.height = window.innerHeight;
//...drawing code...
}
html, body {
width: 100%;
height: 100%;
margin: 0;
}
PathToHeart 좌표로 하트 그리는 HTML 코드 (0) | 2024.02.21 |
---|---|
CORS - DOMException: Failed to execute 'texImage2D' on 'WebGL2RenderingContext': Tainted canvases may not be loaded. (0) | 2021.05.11 |
Teachable Machine TensorFlow.js 예제 분석 (2) | 2021.05.10 |
Canvas 객체를 이미지로 AWS S3에 업로드 하기 (0) | 2021.05.10 |
이미지 객체를 Canvas 에 그리기 (0) | 2021.05.04 |
댓글 영역