canvas (3) 썸네일형 리스트형 canvas 마우스 클릭으로 선 그리기 문제가 있을 시 알려주시면 감사하겠습니다. html css html, body {width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden;} canvas {width: 100%; height: 100%; background: #f2f2f2;} javascript app.js (module) import { Line } from "./line.js"; class App { constructor () { this.canvas = document.createElement('canvas'); document.body.appendChild(this.canvas); this.ctx = this.canvas.getContext('2d'); this.pix.. canvas 마우스를 따라다니는 원 문제가 있을 시 알려주시면 감사하겠습니다. html css html, body {width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden;} canvas {background: #00c3ff; width: 100%; height: 100%;} javascript app.js (module) import { Bubble } from './bubble.js'; class App { constructor () { // init canvas this.canvas = document.createElement('canvas'); document.body.appendChild(this.canvas); this.ctx = this.canvas.getCont.. canvas 마우스 클릭시 해당 좌표로 원 이동 문제가 있을 시 알려주시면 감사하겠습니다. html css html, body {width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden;} canvas {background: #00c3ff; width: 100%; height: 100%;} javascript app.js (module) import { Bubble } from './bubble.js'; class App { constructor () { // init canvas this.canvas = document.createElement('canvas'); document.body.appendChild(this.canvas); this.ctx = this.canvas.getCont.. 이전 1 다음