먼저 구현을 살펴보겠습니다.
(추천 튜토리얼: h5)
구현 코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <canvas id="canvas" width="600" height="600"></canvas> <script type="text/javascript"> var c = document.getElementById('canvas'); var ctx = c.getContext('2d'); //画一个黑色矩形 ctx.fillStyle = 'black'; ctx.fillRect(0,0,600,300); //按下标记 var onoff = false; var oldx = -10; var oldy = -10; //设置颜色 var linecolor = 'white'; //设置线宽 var linw = 4; //添加鼠标移动事件 canvas.addEventListener('mousemove',draw,true); //添加鼠标按下事件 canvas.addEventListener('mousedown',down,false); //添加鼠标弹起事件 canvas.addEventListener('mouseup',up,false); function down(event) { onoff = true; oldx = event.pageX-10; oldy = event.pagey-10; } function up() { onoff = false; } function draw(event) { if(onoff == true) { var newx = event.pageX-10; var newy = event.pageY-10; ctx.beginPath(); ctx.moveTo(oldx,oldy); ctx.lineTo(newx,newy); ctx.strokeStyle = linecolor; ctx.lineCap = 'round'; ctx.stroke(); oldx = newx; oldy = newy; } } </script> </body> </html>
무료 학습 동영상 공유: html 동영상 튜토리얼
위 내용은 HTML5는 간단한 온라인 드로잉 보드를 구현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!