1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
| class Board { constructor(id, color = '#000', fontsize = 1) { this.canvas = document.getElementById(id); this.context = this.canvas.getContext('2d'); this.isDrawing = false; this.posX = 0; this.posY = 0; this.penColor = color; this.fontsize = fontsize; this.isErasing = false; this.step = 0; this.histroyList = []; this.init(); } init() { const bindDown = this.handleMouseDown.bind(this); const bindMove = this.handleMouseMove.bind(this); this.canvas.addEventListener('mousedown', bindDown); this.canvas.addEventListener('mousemove', bindMove); window.addEventListener('mouseup', () => { this.isDrawing = false; }); this.canvas.addEventListener('mouseup', () => { this.step++; if (this.step < this.histroyList.length) { this.histroyList.length = this.step; } this.histroyList.push(this.canvas.toDataURL()); }); this.histroyList.push(this.canvas.toDataURL()); } handleMouseDown(e) { const rect = this.canvas.getBoundingClientRect(); this.posX = e.clientX - rect.left; this.posY = e.clientY - rect.top; this.isDrawing = true; } handleMouseMove(e) { const rect = this.canvas.getBoundingClientRect(); if (this.isErasing) { this.context.globalCompositeOperation = 'destination-out'; this.context.beginPath(); this.context.arc(e.clientX - rect.left, e.clientY - rect.top, 10, 0, Math.PI * 2); this.context.fill(); } else if (this.isDrawing === true) { this.drawLine(this.context, this.posX, this.posY, e.clientX - rect.left, e.clientY - rect.top); this.posX = e.clientX - rect.left; this.posY = e.clientY - rect.top; } } drawLine(context, x1, y1, x2, y2) { context.beginPath(); context.strokeStyle = this.penColor; context.lineWidth = this.fontsize; context.moveTo(x1, y1); context.lineTo(x2, y2); context.stroke(); context.closePath(); } changeColor(color) { this.penColor = color; } changeFontSize(size) { this.fontsize = size; } switchEraseStatus() { this.isErasing = !this.isErasing; } clearBoard() { this.context.clearRect(0, 0, window.myCanvas.width, window.myCanvas.height); this.step = 0; this.histroyList = []; } revoke() { if (this.step > 0) { this.step--; this.context.clearRect(0, 0, window.myCanvas.width, window.myCanvas.height); let pic = new Image(); pic.src = this.histroyList[this.step]; pic.addEventListener('load', () => { this.context.drawImage(pic, 0, 0); }) } else { console.log('不能继续撤销了') } } recover() { if (this.step < this.histroyList.length - 1) { this.step++; this.context.clearRect(0, 0, window.myCanvas.width, window.myCanvas.height); let pic = new Image(); pic.src = this.histroyList[this.step]; pic.addEventListener('load', () => { this.context.drawImage(pic, 0, 0); }) } else { console.log('不能继续恢复了') } } saveAsPic() { const el = document.createElement('a'); el.href = this.canvas.toDataURL(); el.download = 'canvas'; const event = new MouseEvent('click'); el.dispatchEvent(event); } } const b = new Board('myCanvas');
window.colorPicker.addEventListener('change', e => { b.changeColor(e.target.value); })
window.fontsizeSelect.addEventListener('change', e => { b.changeFontSize(window.fontsizeSelect.value); })
window.eraser.addEventListener('click', () => { b.switchEraseStatus(); })
window.reset.addEventListener('click', () => { b.clearBoard(); })
window.revoke.addEventListener('click', () => { b.revoke(); })
window.recover.addEventListener('click', () => { b.recover(); })
window.saveAsPic.addEventListener('click', () => { b.saveAsPic(); })
|