Canvasにお絵描きするプログラムを組んでいます
消去を押すとお絵描きした内容が消されるのですが、
再度お絵描きをすると消去前のお絵描きが復元されてしまうのですが、
なぜでしょうか?
JavaScript
1 2<input type="button" value="消去" onclick="c.clearRect(0, 0, a.clientWidth, a.clientHeight);"> 3<canvas width="1000" height="1000"></canvas> 4 5<script> 6var f=0; 7var a = document.querySelector("canvas"), 8 c = a.getContext("2d"); 9 10c.lineWidth = 10; 11c.strokeStyle = "rgb(0, 0, 255)"; 12a.onmousedown = function (e) { 13 if(f==0){ 14 f=1; 15 c.moveTo(e.pageX, e.pageY); 16 }; 17}; 18 19a.onmousemove = function (e) { 20 if(f==1){ 21 c.lineTo(e.pageX, e.pageY); 22 c.stroke(); 23 }; 24}; 25 26 27a.onmouseup = function (e) { 28 f=0; 29}; 30 31a.ontouchstart = function (e) { 32 e.preventDefault(); 33 c.moveTo(e.touches[0].pageX, e.touches[0].pageY); 34}; 35 36a.ontouchmove = function (e) { 37 c.lineTo(e.touches[0].pageX, e.touches[0].pageY); 38 c.stroke(); 39}; 40</script> 41 42
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。