This article shares the specific code of JavaScript canvas to achieve the scratch effect for your reference. The specific content is as follows Rendering HTML code: <div class="ggk"> <span id="span">200 yuan</span> <canvas id="canvas"></canvas> </div> CSS code: .ggk { width: 200px; height: 100px; border: 1px solid #000; margin: 20px auto; color: red; position: relative; } .ggk span { position: absolute; width: 100%; height: 100%; text-align: center; font-size: 50px; line-height: 100px; } #canvas { position: absolute; left: 0; top: 0; } js code: var canvas = document.getElementById("canvas") init() function init() { canvas.width = 200; canvas.height = 100; var ctx = canvas.getContext("2d") // Cover with a layer of gray ctx.save(); ctx.fillStyle = 'rgb(100,100,100)' ctx.fillRect(0, 0, 200, 100) draw(ctx) pro() } // Random content function pro() { var span = document.getElementById("span") var arr = ["100 yuan", 'Thank you for your patronage', '200 yuan', 'Thank you for your patronage', 'Thank you for your patronage', 'Thank you for your patronage', '5 million', 'Thank you for your patronage'] var num = Math.floor(Math.random() * (arr.length - 1)) var text = arr[num] span.innerHTML = text } function draw(ctx){ //Click event canvas.onmousedown = function(e){ //Move event var downX = e.offsetX var downY = e.offsetY ctx.beginPath() // ctx.globalCompositeOperation = 'destination-out' ctx.lineWidth = 10; ctx.moveTo(downX,downY) canvas.onmousemove = function(e){ var x = e.offsetX var y = e.offsetY // ctx.lineTo(x,y) ctx.clearRect(x,y,20,20) ctx.stroke() } } // Mouse pop-up event canvas.onmouseup = function(){ canvas.onmousemove = null } } 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:
|
<<: Solve the problem of docker images disappearing
>>: Introduction and use of triggers and cursors in MySQL
This blog post is about a difficulty encountered ...
Table of contents 1. Run workflow 2. Basic comman...
Table of contents 1. Install Docker 2. Install so...
Table of contents 1. Some points to remember 1. V...
Preface When I was working on a project recently,...
The new official website is online, but the exper...
Preface: Sometimes in a route, the main part is t...
When a thread executes a DELAYED statement for a ...
Table of contents 1. User created script 2. Word ...
useState useState adds some internal state to a c...
Table of contents Install Tomcat with Docker Use ...
1. Pull the official 5.0.3 image [root@localhost ...
Preface In the previous interview process, when a...
Basic structure: Copy code The code is as follows:...
Project Background Recently, there is a project w...