Created
May 30, 2018 00:17
-
-
Save pizzapanther/2bf030b35c4d7f5b1d5d5ac84630c44d to your computer and use it in GitHub Desktop.
Revisions
-
pizzapanther created this gist
May 30, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,55 @@ <!DOCTYPE html> <html> <head> <title>Canvas Test</title> </head> <body> <canvas width="400" height="400"></canvas> <script> var current; var past; function draw (past, current) { ctx.moveTo(past[0], past[1]); ctx.quadraticCurveTo( past[0], past[1], current[0], current[1] ); ctx.stroke(); ctx.closePath(); } var canvas = document.querySelector('canvas'); var ctx = canvas.getContext('2d'); ctx.strokeStyle = 'red'; var mouse_down = false; canvas.addEventListener('mousedown', function (event) { mouse_down = true; console.log('down', event.offsetX, event.offsetY); }); canvas.addEventListener('mouseup', function (event) { mouse_down = false; past = null; console.log('up', event.offsetX, event.offsetY); }); canvas.addEventListener('mousemove', function (event) { if (mouse_down) { current = [event.offsetX, event.offsetY]; if (past) { draw(past, current); } past = [event.offsetX, event.offsetY]; } if (mouse_down) { console.log('move', event.offsetX, event.offsetY); } }); </script> </body> </html>