HTML5 圖畫(huà)板
本文介紹如何使用HTML5來(lái)創(chuàng)建一個(gè)圖畫(huà)板。通過(guò)使用鼠標(biāo)在畫(huà)布上繪畫(huà),你可以創(chuàng)建你自己的繪畫(huà)作品。下面是代碼實(shí)現(xiàn):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML5 圖畫(huà)板</title> <script> window.onload = function() { var canvas = document.getElementById('canvas'); var context = canvas.getContext('2d'); var mouse = {x: 0, y: 0}; var paint = false; canvas.onmousedown = function(e) { paint = true; mouse.x = e.pageX - this.offsetLeft; mouse.y = e.pageY - this.offsetTop; }; canvas.onmouseup = function() { paint = false; }; canvas.onmousemove = function(e) { if (paint) { var x = e.pageX - this.offsetLeft; var y = e.pageY - this.offsetTop; context.beginPath(); context.moveTo(mouse.x, mouse.y); context.lineTo(x, y); context.stroke(); mouse.x = x; mouse.y = y; } }; }; </script> </head> <body> <canvas id="canvas" width="500" height="500"></canvas> </body> </html>
以上代碼中,我們使用了HTML5中的canvas標(biāo)簽來(lái)創(chuàng)建畫(huà)布。我們使用了JavaScript中的鼠標(biāo)事件來(lái)捕捉鼠標(biāo)在畫(huà)布上的操作,以實(shí)現(xiàn)繪畫(huà)功能。具體實(shí)現(xiàn)可以參考代碼中的注釋。
有了這個(gè)HTML5圖畫(huà)板,你可以在網(wǎng)頁(yè)上畫(huà)出自己的絕妙畫(huà)作!