av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁技術(shù)文章
文章詳情頁

JS canvas實(shí)現(xiàn)畫板和簽字板功能

瀏覽:117日期:2024-04-04 18:39:15

本文實(shí)例為大家分享了JS canvas實(shí)現(xiàn)畫板/簽字板功能的具體代碼,供大家參考,具體內(nèi)容如下

前言

常見的電子教室里的電子黑板。

本文特點(diǎn):

原生JS封裝好的模塊

最簡代碼樣例

<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <meta name='viewport' content='width=device-width, initial-scale=1.0'> <title>Document</title></head><body> <canvas id='canvas'></canvas> <script> let c = document.getElementById(’canvas’); c.width = window.innerWidth; c.height = window.innerHeight; let ctx = c.getContext(’2d’); // draw one black board ctx.fillStyle = 'black'; ctx.fillRect(0,0,600,300); // 按下標(biāo)記 let onoff = false, oldx = -10, oldy = -10; // 設(shè)置顏色 let linecolor = 'white'; // 設(shè)置線寬 let linw = 4; // 添加鼠標(biāo)事件 // 按下 c.addEventListener(’mousedown’, event => { onoff = true; // 位置 - 10是為了矯正位置,把繪圖放在鼠標(biāo)指針的頂端 oldx = event.pageX - 10; oldy = event.pageY - 10; },false); // 移動 c.addEventListener(’mousemove’, event => { if(onoff == true){ let newx = event.pageX - 10, newy = event.pageY - 10; // 繪圖 ctx.beginPath(); ctx.moveTo(oldx,oldy); ctx.lineTo(newx,newy); ctx.strokeStyle = linecolor; ctx.lineWidth = linw; ctx.lineCap = 'round'; ctx.stroke(); // 每次移動都要更新坐標(biāo)位置 oldx = newx, oldy = newy; } }, true); // 彈起 c.addEventListener(’mouseup’, ()=> { onoff = false; },false); </script></body></html>

結(jié)果展示

JS canvas實(shí)現(xiàn)畫板和簽字板功能

代碼講解

思路

1、鼠標(biāo)按下,開始描畫。鼠標(biāo)按下事件。2、鼠標(biāo)彈起,結(jié)束描畫。鼠標(biāo)彈起事件。3、鼠標(biāo)按下移動,路徑畫線。鼠標(biāo)移動事件。

代碼講解

整體思路:按下鼠標(biāo),觸發(fā)移動的開關(guān),移動后開始記錄線條(用移動后的坐標(biāo)-移動前的坐標(biāo),然后繪線),每次移動都會更新舊坐標(biāo)。松開鼠標(biāo)后,釋放移動開關(guān)。

1、只有在鼠標(biāo)按下,才會觸發(fā)移動繪圖的效果,所以需要增加一個狀態(tài)判斷。2、因?yàn)槭髽?biāo)指針和實(shí)際位置有一個偏移量,所以在坐標(biāo)定位的時候,需要增加pagex-10從而使坐標(biāo)位于指針的尖端處。3、每次移動都要更新坐標(biāo)位置,用小段的線段來模擬不規(guī)則的線。

封裝模塊

<canvas id='canvas'></canvas><script> class Board{ constructor(canvasName = ’canvas’, data = new Map([ ['onoff', false], ['oldx', -10], ['oldy', -10], ['fillStyle', 'black'], ['lineColor', 'white'], ['lineWidth', 4], ['lineCap', 'round'], ['canvasWidth', window.innerWidth], ['canvasHeight', window.innerHeight] ])){ // this.data = data; this.c = document.getElementById(canvasName); this.ctx = this.c.getContext(’2d’); this.onoff = data.get('onoff'); this.oldx = data.get('oldx'); this.oldy = data.get('oldy'); this.lineColor = data.get('lineColor'); this.lineWidth = data.get('lineWidth'); this.lineCap = data.get('lineCap'); this.c.width = data.get('canvasWidth'); this.c.height = data.get('canvasHeight'); this.ctx.fillStyle = data.get('fillStyle'); this.ctx.fillRect(0,0,600,300); } eventOperation(){ // 添加鼠標(biāo)事件 // 按下 this.c.addEventListener(’mousedown’, event => { this.onoff = true; // 位置 - 10是為了矯正位置,把繪圖放在鼠標(biāo)指針的頂端 this.oldx = event.pageX - 10; this.oldy = event.pageY - 10; },false); // 移動 this.c.addEventListener(’mousemove’, event => { if(this.onoff == true){ let newx = event.pageX - 10, newy = event.pageY - 10; // 繪圖 this.ctx.beginPath(); this.ctx.moveTo(this.oldx,this.oldy); this.ctx.lineTo(newx,newy); this.ctx.strokeStyle = this.lineColor; this.ctx.lineWidth = this.lineWidth; this.ctx.lineCap = this.lineCap; this.ctx.stroke(); // 每次移動都要更新坐標(biāo)位置 this.oldx = newx, this.oldy = newy; } }, true); // 彈起 this.c.addEventListener(’mouseup’, ()=> { this.onoff = false; },false); } } let board = new Board(); board.eventOperation();</script>

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 精品一区二区三区在线播放 | 伊人久久成人 | 日韩免费 | 日韩中文字幕一区二区 | 天天插日日操 | 久久久www成人免费无遮挡大片 | 日韩在线国产 | 亚洲一区av | 亚洲黄色视屏 | 成人精品久久日伦片大全免费 | 鲁一鲁资源影视 | 欧美日韩视频在线 | 成人超碰在线 | 日韩在线观看中文字幕 | 91av在线影院 | 久久久久1 | 美女福利视频网站 | 一区二区三区影院 | 91高清在线观看 | www.久久 | 国产激情精品一区二区三区 | 国产清纯白嫩初高生视频在线观看 | 久久精品小视频 | 亚洲综合色视频在线观看 | 在线不卡视频 | 99精品一区二区 | 午夜欧美 | 九九精品在线 | 精品九九九 | 一区二区三区亚洲 | 亚洲一区二区电影在线观看 | 91伊人| 91天堂网 | 人成精品 | 久久99精品久久久久久秒播九色 | 综合久久av | 国产视频1区 | 欧美日韩国产一区二区三区 | 欧美福利影院 | 国产小u女发育末成年 | 欧美性区 |