JavaScript to implement mobile signature function

JavaScript to implement mobile signature function

This article shares the specific code of JavaScript to implement the mobile signature function for your reference. The specific content is as follows

1. HTML part

<div class="mui-content-padded">
 <div class="mui-inline"><font style="font-family: '微软雅黑';font-size: 1.2rem;">Signature of the acceptor:</font></div>
</div>
<div class="mui-content-canvasDiv" style="overflow: hidden;">
 <canvas id="myCanvas" width="660" height="360" style="border:1px solid #f2f2f2;"></canvas>
 <div class="saveimgs" id="saveImgDiv"></div>
</div>

myCanvas is the signed div, saveImgDiv is the div that is echoed after saving.

2. Page initialization, add div signature function

InitThis();
var mousePressed = false;
var lastX, lastY;
var ctx = document.getElementById('myCanvas').getContext("2d");
var c = document.getElementById("myCanvas");
var selected1, selected2;
function InitThis() {
 // Touch screen c.addEventListener('touchstart', function(event) {
  console.log(1)
  if (event.targetTouches.length == 1) {
   event.preventDefault(); // Prevent browser default events, important mousePressed = true;
   Draw(event.touches[0].pageX - this.offsetLeft, event.touches[0].pageY - this.offsetTop, false);
  }
 }, false);
 c.addEventListener('touchmove', function(event) {
  console.log(2)
  if (event.targetTouches.length == 1) {
   event.preventDefault(); // Prevent browser default events, important if(mousePressed) { 
    Draw(event.touches[0].pageX - this.offsetLeft, event.touches[0].pageY - this.offsetTop, true);
 
   }
  }
 }, false);
 c.addEventListener('touchend', function(event) {
  console.log(3)
  if (event.targetTouches.length == 1) {
   event.preventDefault(); // Prevent browser default events to prevent screen dragging during handwriting, important mousePressed = false;
  }
 }, false);
 // Mouse c.onmousedown = function(event) {
  mousePressed = true;
  Draw(event.pageX - this.offsetLeft, event.pageY - this.offsetTop, false);
 };
 c.onmousemove = function(event) {
  if(mousePressed) {
   Draw(event.pageX - this.offsetLeft, event.pageY - this.offsetTop, true);
  }
 };
 c.onmouseup = function(event) {
  mousePressed = false;
 };
}
 
function Draw(x, y, isDown) {
 if(isDown) {
  ctx.beginPath();
  ctx.strokeStyle = selected2;
  ctx.lineWidth = selected1;
  ctx.lineJoin = "round";
  ctx.moveTo(lastX, lastY);
  ctx.lineTo(x, y);
  ctx.closePath();
  ctx.stroke();
 }
 lastX = x;
 lastY = y;
}

3. Get the image path and put it in saveImgDiv, signature echo logic

var file = "http://10.1.31.173:8097/upload/" + iv[0].zjqm + "?v=" + new Date().getTime();
 
$("#saveImgDiv").append('<img src="'+ file + '" style="background:white" width="660" height="360">');

4. Save the user signature, which can be placed in the callback of saving successful submission

var saveimgs = document.getElementsByClassName("saveimgs")[0];
 
//Save signature image var image = c.toDataURL("image/png");
var ctximg = document.createElement("span");
ctximg.innerHTML = "<img src='" + image + "' alt='from canvas'/>";
if (saveimgs.getElementsByTagName('span').length >= 1) {
 var span_old = saveimgs.getElementsByTagName("span")[0];
 saveimgs.replaceChild(ctximg,span_old)
} else {
 saveimgs.appendChild(ctximg);
}

Effect

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • JS canvas realizes the functions of drawing board and signature board

<<:  Robots.txt detailed introduction

>>:  Beginners learn some HTML tags (2)

Recommend

Vue implements simple data two-way binding

This article example shares the specific code of ...

Detailed example of clearing tablespace fragmentation in MySQL

Detailed example of clearing tablespace fragmenta...

Node.js makes a simple crawler case tutorial

Preparation First, you need to download nodejs, w...

Graphical explanation of the underlying principle of JavaScript scope chain

Table of contents Preface Scope 1. What is scope?...

How to get the real path of the current script in Linux

1. Get the real path of the current script: #!/bi...

Basic learning and experience sharing of MySQL transactions

A transaction is a logical group of operations. E...

Element table header row height problem solution

Table of contents Preface 1. Cause of the problem...

A summary of detailed insights on how to import CSS

The development history of CSS will not be introd...

Summary of some reasons why crontab scheduled tasks are not executed

Preface I recently encountered some problems at w...

How to implement one-click deployment of nfs in linux

Server Information Management server: m01 172.16....