這篇文章將為大家詳細講解有關(guān)vue實現(xiàn)一個電子簽名組件的示例,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站是專業(yè)的巫溪網(wǎng)站建設(shè)公司,巫溪接單;提供網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行巫溪網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!想要繪制圖形,第一步想到的就是使用canvas
標(biāo)簽,在之前的文章里我們使用canvas
實現(xiàn)了一個前端生成圖形驗證碼的組件,被吐槽不夠安全,那么這個電子簽名組件想必不會被吐槽了吧~
canvas
標(biāo)簽本身是沒有繪圖能力的,所有的繪制工作必須在 JavaScript 內(nèi)部完成。
使用canvas
繪圖有幾個必要的步驟:
在當(dāng)前電子簽名需求中,由于簽名其實是由一條條線組成的,因此我們會用到以下幾個方法:
想要在canvas
中繪圖,還需要綁定幾個特定的事件,而這些事件在pc端和手機端不盡相同
canvas
標(biāo)簽并綁定事件在mounted
生命周期初始化
mounted() { let canvas = this.$refs.canvasF; canvas.height = this.$refs.canvasHW.offsetHeight - 100; canvas.width = this.$refs.canvasHW.offsetWidth - 10; this.canvasTxt = canvas.getContext("2d"); this.canvasTxt.strokeStyle = this.color; this.canvasTxt.lineWidth = this.linewidth; }
//電腦設(shè)備事件 mouseDown(ev) { ev = ev || event; ev.preventDefault(); let obj = { x: ev.offsetX, y: ev.offsetY }; this.startX = obj.x; this.startY = obj.y; this.canvasTxt.beginPath();//開始作畫 this.points.push(obj);//記錄點 this.isDown = true; },
//移動設(shè)備事件 touchStart(ev) { ev = ev || event; ev.preventDefault(); if (ev.touches.length == 1) { this.isDraw = true; //簽名標(biāo)記 let obj = { x: ev.targetTouches[0].clientX, y: ev.targetTouches[0].clientY - (document.body.offsetHeight * 0.5 + this.$refs.canvasHW.offsetHeight * 0.1) }; //y的計算值中:document.body.offsetHeight*0.5代表的是除了整個畫板signatureBox剩余的高, //this.$refs.canvasHW.offsetHeight*0.1是畫板中標(biāo)題的高 this.startX = obj.x; this.startY = obj.y; this.canvasTxt.beginPath();//開始作畫 this.points.push(obj);//記錄點 } },
//電腦設(shè)備事件 mouseMove(ev) { ev = ev || event; ev.preventDefault(); if (this.isDown) { let obj = { x: ev.offsetX, y: ev.offsetY }; this.moveY = obj.y; this.moveX = obj.x; this.canvasTxt.moveTo(this.startX, this.startY);//移動畫筆 this.canvasTxt.lineTo(obj.x, obj.y);//創(chuàng)建線條 this.canvasTxt.stroke();//畫線 this.startY = obj.y; this.startX = obj.x; this.points.push(obj);//記錄點 } },
//移動設(shè)備事件 touchMove(ev) { ev = ev || event; ev.preventDefault(); if (ev.touches.length == 1) { let obj = { x: ev.targetTouches[0].clientX, y: ev.targetTouches[0].clientY - (document.body.offsetHeight * 0.5 + this.$refs.canvasHW.offsetHeight * 0.1) }; this.moveY = obj.y; this.moveX = obj.x; this.canvasTxt.moveTo(this.startX, this.startY);//移動畫筆 this.canvasTxt.lineTo(obj.x, obj.y);//創(chuàng)建線條 this.canvasTxt.stroke();//畫線 this.startY = obj.y; this.startX = obj.x; this.points.push(obj);//記錄點 } },
//電腦設(shè)備事件 mouseUp(ev) { ev = ev || event; ev.preventDefault(); if (1) { let obj = { x: ev.offsetX, y: ev.offsetY }; this.canvasTxt.closePath();//收筆 this.points.push(obj);//記錄點 this.points.push({ x: -1, y: -1 }); this.isDown = false; } },
//移動設(shè)備事件 touchEnd(ev) { ev = ev || event; ev.preventDefault(); if (ev.touches.length == 1) { let obj = { x: ev.targetTouches[0].clientX, y: ev.targetTouches[0].clientY - (document.body.offsetHeight * 0.5 + this.$refs.canvasHW.offsetHeight * 0.1) }; this.canvasTxt.closePath();//收筆 this.points.push(obj);//記錄點 this.points.push({ x: -1, y: -1 });//記錄點 } },
發(fā)現(xiàn)自己寫錯字了,擦掉畫板重新寫過
//重寫 overwrite() { this.canvasTxt.clearRect( 0, 0, this.$refs.canvasF.width, this.$refs.canvasF.height ); this.points = []; this.isDraw = false; //簽名標(biāo)記 },
data() { return { points: [], canvasTxt: null, startX: 0, startY: 0, moveY: 0, moveX: 0, endY: 0, endX: 0, w: null, h: null, isDown: false, color: "#000", linewidth: 3, isDraw: false //簽名標(biāo)記 }; },
關(guān)于vue實現(xiàn)一個電子簽名組件的示例就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。