HTML+CSS+JavaScript to make a girlfriend version of scratch card (you will learn it once you see it)

HTML+CSS+JavaScript to make a girlfriend version of scratch card (you will learn it once you see it)

I believe everyone has played scratch tickets. When I was a kid, as soon as I had money in my pocket, I would call my friends and run to the store near my home. I would hand the owner the crumpled fifty cents with my tender little hands, and scratch the tickets with great anticipation. I had already thought in my mind that if I won 100 yuan, I would buy lots of spicy snacks, cards, spinning tops, and Audi Double Diamond yo-yos...

If you read this article carefully, you can use your girlfriend’s beautiful photos to get a scratch card that is unique to you! (Of course, if you don’t have a girlfriend, you can also use the pictures of beautiful women you have collected for many years!)

⛳️Use HTML, CSS and JavaScript to implement scratch cards/scratch lottery

Don't worry, watch the demo first

Implementing Scratch Lottery Tickets Using HTML, CSS and JavaScript

Step 1: Create the basic structure of the scratch card

Step 2: Lay the image on the canvas (as the bottom layer of the scratch card!)

Step 3: How to make the scratch card cover

Step 4: How to create the words "Please scratch off" on the scratch-off film

Step 5: Use JavaScript to activate the scratch card

Done—now you can use your own scratch card!

Tutorial for beginners:

♥️Don't worry, watch the demo first

Scratch Lottery

  • 🎯🎯As you can see in the video above, here I implemented a scratch card with the help of HTML, CSS and JavaScript. 🎯🎯
  • 👑👑As we all know, scratch cards are divided into two layers. The upper layer is a covering film that can be scraped off directly. After you scrape off the covering film, the true face of the scratch card will appear, and you will truly know whether you have won the jackpot! 👑👑

💎Use HTML, CSS and JavaScript to implement scratch tickets

  • Hope you like this design. I’ve shared a detailed tutorial below on how I made this design, and it comes with the full code for the entire design.
  • You can just copy and paste it. However, it is better to teach someone how to fish than to give him fish, so I hope that you can follow my pace and learn each step of the entire design little by little. I believe that by the end, you can independently design your own scratch card!

To do this, first, you have to create an HTML file.

🎉Step 1: Create the basic structure of the scratch card

Regarding the design of this scratch card, this blogger used a very popular technology in the front-end - canvas! Since we are using canvas, we must briefly introduce it - canvas uses JavaScript to draw images on the web page. The drawing canvas area is a rectangular area, and we can control every pixel in it to achieve the effect of drawing whatever we want. This is also the reason why this blogger uses it! If you want to learn canvas in depth, you can read this article - "In order to let my junior sister learn canvas in 20 minutes, I stayed up late and worked hard on this article plus a small project [❤️ Recommended collection ❤️]"

  • This HTML code draws the basic structure of the scratch card through canvas. I used some CSS code to make this canvas area visible (this area is also the area where the scratch tickets will be made later).
  • It should be noted that the width and height attributes of this canvas (i.e. width and height) should be set according to the size of your image, otherwise there will be a problem of only displaying part of the image later!
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Scratch Lottery</title>
		<style type="text/css">
			#c1{
				border: 1px solid blue;
			}
		</style>
	</head>
	<body>
		
		<canvas id="c1" width="960" height="1440"></canvas>
		
	</body>
</html>

Demonstration effect:

insert image description here

🎅Step 2: Lay the image on the canvas (as the base of the scratch card!)

  • Because canvas uses JavaScript to draw images on the web page, all operations on the scratch card area (i.e. the canvas area) are performed in JavaScript (although JavaScript is said to be the most difficult in the front-end, I have given detailed comments in the code for all the JavaScript below. If you understand basic JavaScript, I believe you will definitely understand it!).
  • Note: At this time, pictures are used in HTML, so you need to create an img folder in the same directory as this HTML file and put your pictures in it!
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Scratch Lottery</title>
		<style type="text/css">
			#c1{
				border: 1px solid blue;
			}
		</style>
	</head>
	<body>
		
		<canvas id="c1" width="960" height="1440"></canvas>
		
	</body>
	<script type="text/javascript">
		// Step 1: Match the canvas object var c1 = document.getElementById("c1");
		//Step 2: Get the context of canvas var ctx1 = c1.getContext("2d"); //The getContext("2d") object is a built-in HTML5 object with multiple methods for drawing paths, rectangles, circles, characters, and adding images.
		
		//Create an image object var imgs = new Image();
		//Specify the image path imgs.src = 'img/girl.jpg'
		
		// Note: Images cannot be placed directly on the canvas. They need to be loaded through the .onload event. Otherwise, the image may not appear on the canvas because it has not been loaded completely. imgs.onload = function(){
			// Parameters: image, starting x coordinate, starting y coordinate, the last two parameters specify the size (it is recommended that the size ratio matches the original image ratio)
			// If the last two parameters are not specified, the original image will be drawn 1:1 by default, and the content that cannot be displayed will no longer be displayed!
			ctx1.drawImage(this,0,0,960,1440)
			
			// Extended usage:
			//jb.drawImage(this,200,200,300,300,0,0,1078,1881)
			// 200,200,300,300 determines the cropping of the upper left to lower right area of ​​the image; the following four coordinates represent the upper left and lower right coordinates of the drawn area }
			
	</script>
</html>

Demonstration effect:

insert image description here

🎃Step 3: How to make the scratch card cover film

  • Regarding the covering film of the scratch card, this blogger achieves it by creating another canvas and covering it directly on top of the canvas layer with the tiled image - this also conforms to the characteristics of scratch cards, doesn't it!
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Scratch Lottery</title>
		<style type="text/css">
			#c1{
				border: 1px solid blue;
				position: absolute;
			}
			
			#c2{
				border: 1px solid red;
			}
			
			body{
				position: relative;
			}
		</style>
	</head>
	<body>
		
		<canvas id="c1" width="960" height="1440"></canvas>
		
		<canvas id="c2" width="960" height="1440"></canvas>
		
	</body>
	<script type="text/javascript">
		var c1 = document.getElementById("c1");
		var c2 = document.getElementById("c2");
		
		var ctx1 = c1.getContext("2d");
		var ctx2 = c2.getContext("2d");
		
		
		// Draw the image to the underlying canvas2
		var imgs = new Image();
		imgs.src = 'img/girl.jpg';
		imgs.onload = function(){
			ctx2.drawImage(this,0,0)
		}
		
		// Draw the coating to the top layer (i.e. the covering film) canvas1
		ctx1.fillStyle = "lightgray";
		ctx1.fillRect(0,0,960,1440);

	</script>
</html>

Demonstration effect:

insert image description here

It should be noted that the above code sets the absolute positioning of the canvas of the underlying image of the tiled scratch card, and sets the relative positioning of its parent body tag (this is what is often said in the front end that the parent is relative to the child!)

Regarding relative positioning and absolute positioning, let me briefly talk about it (you can understand it):

  • position:relative——relative positioning; position:absolute——absolute positioning;
  • Generally, relative is placed in the parent div, and absolute is placed in the child div;
  • Absolute positioning is a floating layer. If you delete the position:relative; of the parent div above, then the position:absolute; of the child div will move, move, and move like a snake!
  • So if you use absolute positioning, then there must be relative positioning in the parent div to prevent the absolute positioning layer from moving! ! !

🎈Step 4: How to make the words "Please scratch off" on the scratch-off film

Just add the following JavaScript code!

	//Parameters: normal font/italic font size Microsoft YaHei/FangSong normal: normal font/italic: italic ctx1.font = "normal 80px FangSong";   
	//Font outline color ctx1.strokeStyle = "slateblue";	
	//Draw text (hollow) Parameters: text, upper left corner x coordinate, upper left corner y coordinate ctx1.strokeText("Please scratch it!",320,750);

Demonstration effect:

insert image description here

👻Step 5: Use JavaScript to activate the scratch ticket

  • We have designed the entire scratch card above, but this scratch card does not have any operational functions yet. This means that this scratch card cannot be scratched! If you can’t even scratch it, what’s the point of calling it a scratch card? ! ! . To do this, we need to use JavaScript to listen for mouse events to activate the scratch card.
  • Use the following JavaScript. I have commented the code in detail. If you know basic JavaScript, you will definitely understand it.

By the way: This scratch card is designed to continuously clear the covering film of the 50px*50px area where your mouse moves after you click the mouse. No longer cleared when the mouse is unclicked! So - first listen to the mouse click event of the canvas, and when the mouse click event is captured, then listen to the mouse move event. The mouse move event contains a clear function! When the mouse is released, the clearing function will be turned off!

// Listen for the onmousedown event of the canvas (i.e. the mouse click event)
		c1.onmousedown = function(ev){
		c1.onmousemove = function(e){ //Listen to the onmousemove event of canvas (i.e. mouse movement event)
			console.log(e);
			var w = 50; // width of clear area var h = 50; // height of clear area var x = e.pageX-c1.offsetLeft - w/2; // x position of clear area var y = e.pageY-c1.offsetTop - h/2; // y position of clear area ctx1.clearRect(x,y,w,h);
		}
		}
		// Listen for the mouse onmouseup event (i.e. mouse release event)
		c1.onmouseup = function(ev){
		//Cancel onmousemove event c1.onmousemove = null;
		}

💝Done——Now you can use the scratch card you designed! 🏄Tutorial for complete beginners:

  1. Environmental preparation: No environment is needed! This design is purely front-end implementation, so it does not require any environment at all - you only need a browser on your computer (I don’t believe that you don’t even have a built-in browser on your computer)!
  2. Create a project folder, I named it "Scratch-off".
  3. Create an "img" folder under the project folder and put your girlfriend's/long-collected beautiful pictures into it.
  4. Create a text file called "Scratch.txt" in the project folder and copy the following code into it.
  5. Rename the "Scratch-off.txt" file to "Scratch-off.html".
  6. Double-click to run! ! !

insert image description here

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Scratch Lottery</title>
		<style type="text/css">
			#c1{
				border: 1px solid blue;
				position: absolute;
			}
			
			#c2{
				border: 1px solid red;
			}
			
			body{
				position: relative;
			}
		</style>
	</head>
	<body>
		
		<canvas id="c1" width="960" height="1440"></canvas>
		
		<canvas id="c2" width="960" height="1440"></canvas>
		
	</body>
	<script type="text/javascript">
		var c1 = document.getElementById("c1");
		var c2 = document.getElementById("c2");
		
		var ctx1 = c1.getContext("2d");
		var ctx2 = c2.getContext("2d");
		
		
		// Draw the image to the underlying canvas2
		var imgs = new Image();
		imgs.src = 'img/girl.jpg';
		imgs.onload = function(){
			ctx2.drawImage(this,0,0)
		}
		
		// Draw the coating to the top layer (i.e. the covering film) canvas1
		ctx1.fillStyle = "lightgray";
		ctx1.fillRect(0,0,960,1440);
		
		ctx1.font = "normal 80px Fangsong";   
		ctx1.strokeStyle = "slateblue";			
		ctx1.strokeText("Please scratch it!",320,750);
		
		// Listen for the onmousedown event of canvas c1.onmousedown = function(ev){
		c1.onmousemove = function(e){
			console.log(e);
			var w = 50; // width of clear area var h = 50; // height of clear area var x = e.pageX-c1.offsetLeft - w/2; // x position of clear area var y = e.pageY-c1.offsetTop - h/2; // y position of clear area ctx1.clearRect(x,y,w,h);
		}
		}
		c1.onmouseup = function(ev){
		//Cancel onmousemove event c1.onmousemove = null;
		}

	</script>
</html>

If you learned something from this article and liked it, then I am honored. I hope you can share this article with your friends, like and bookmark it, and readers are welcome to discuss technology in the comment section or put forward your sincere opinions.

This article ends here. Nice to meet you - I am [孤寒者], a boy who likes computers! 🌹

This is the end of this article about HTML+CSS+JavaScript making a girlfriend version of the scratch card (you can learn it at a glance). For more related HTML+CSS+JavaScript scratch card content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • HTML plus CSS style to achieve JS food project homepage sample code
  • Detailed explanation of the use of HTML canvas and page storage technology in JavaScript
  • JS, CSS and HTML to implement the registration page
  • SpringMVC @RequestBody Date type Json conversion method
  • C# sends a POST request with JSON Body through HttpWebRequest
  • Solve the problem of @RequestBody receiving json object and reporting error 415
  • Let's talk about the relationship between @RequestBody and Json
  • Modify the style of HTML body in JS

<<:  PostgreSQL materialized view process analysis

>>:  Solve the problem of MySql client exiting in seconds (my.ini not found)

Recommend

How to apply TypeScript classes in Vue projects

Table of contents 1. Introduction 2. Use 1. @Comp...

Linux kernel device driver proc file system notes

/***************** * proc file system************...

Detailed explanation of Vue's keyboard events

Table of contents Common key aliases Key without ...

Detailed process of installing various software in Docker under Windows

1. Install MySQL # Download mysql in docker docke...

Summary of the use of CSS scope (style splitting)

1. Use of CSS scope (style division) In Vue, make...

Element sample code to implement dynamic table

Table of contents 【Code background】 【Code Impleme...

How to use SessionStorage and LocalStorage in Javascript

Table of contents Preface Introduction to Session...

How InnoDB implements serialization isolation level

Serialization implementation InnoDB implements se...

MySQL replication mechanism principle explanation

Background Replication is a complete copy of data...

Detailed explanation of JS array methods

Table of contents 1. The original array will be m...

Web front-end development experience summary

XML files should be encoded in utf-8 as much as p...

Summary of some related operations of Linux scheduled tasks

I have searched various major websites and tested...

5 ways to determine whether an object is an empty object in JS

1. Convert the json object into a json string, an...