introduceThis effect is drawn with Canvas and then implemented using class inheritance. When the mouse moves at the specified Canvas position, a small ball of random color will be generated at the current mouse position, and then the ball will slowly disappear. Effect diagram Implementation steps
HTML Structure <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Beautiful Balls</title> <style> #canvas{ margin-left: 100px } </style> </head> <body> <canvas id="canvas">Your browser does not support canvas</canvas> <!-- <script src="./underscore-min.js"></script> --> <!-- Underscore already has a packaged _.random function. You don't need to write a random function manually by importing it. --> <script src="./index.js"></script> </body> </html> Create a canvas environment// index.js // 1. Get the current canvas const canvas = document.getElementById('canvas'); const ctx = canvas.getContext('2d'); // Set the canvas size style canvas.width = 1000; canvas.height = 600; canvas.style.backgroundColor = '#000' Example analysis First, find the canvas element: const canvas = document.getElementById("myCanvas"); Then, create the context object: const ctx = canvas.getContext('2d'); Set the width and height background color Writing Ball// index.js // 2. Ball class class Ball { constructor (x, y, color) { this.x = x; // x-axis this.y = y; // y-axis this.color = color; // color of the ball this.r = 40; // radius of the ball } // Draw the ball render () { ctx.save(); ctx.beginPath(); ctx.arc(this.x, this.y, this.r, 0, Math.PI * 2); ctx.fillStyle = this.color; ctx.fill(); ctx.restore(); } } Example analysis
Implement the MoveBall class that inherits the Ball class// index.js // 3. Class that moves the ball class MoveBall extends Ball { // Inherits constructor (x, y, color) { super(x, y, color); // Change in quantity // Random coordinates of the ball this.dX = Random(-5, 5); this.dY = Random(-5, 5); // Random number for decreasing radius, because the ball starts out large and then slowly disappears this.dR = Random(1, 3); } // 4. Change the position and radius of the ball upDate () { this.x += this.dX; this.y += this.dY; this.r -= this.dR; // Determine whether the radius of the ball is less than 0 if(this.r < 0) { this.r = 0 // A radius of 0 means the ball disappears} } } Example analysis
Instantiate the ball// index.js // 5. Instantiate the ball // Store the generated ball let ballArr = []; // Define random function If you reference underscore-min.js, you don't need to write a random function, you can directly use _.random let Random = (min, max) => { return Math.floor(Math.random() * (max - min) + min); } // Listen for mouse movement canvas.addEventListener('mousemove', function (e){ // Random colors // You can also use a fixed color array let colorArr = ['red', 'green', 'blue', 'yellow', 'orange', 'pink']; // bgcolor ==> colorArr[Random(0, colorArr.length - 1)] let bgColor = `rgb(${Random(0,256)}, ${Random(0,256)}, ${Random(0,256)})`; ballArr.push(new MoveBall(e.offsetX, e.offsetY, bgColor)); console.log(ballArr); }) // Start the timer setInterval(function () { // Clear the screen ctx.clearRect(0, 0, canvas.width, canvas.height); // Draw the ball for (let i = 0 ; i < ballArr.length; i++ ) { ballArr[i].render(); ballArr[i].upDate(); } }, 50); Example analysis
We can see that the radius of the ball that does not clear the screen gradually shrinks, but the ball will not disappear in the end. This is definitely not the effect we want! What is the effect of clearing the screen? It’s the effect at the beginning of the article! (Baby, have fun❤) index.js full code// 1. Get the current canvas const canvas = document.getElementById('canvas'); const ctx = canvas.getContext('2d'); // Set the canvas size style canvas.width = 1000; canvas.height = 600; canvas.style.backgroundColor = '#000' // 2. Ball class class Ball { constructor (x, y, color) { this.x = x; this.y = y; this.color = color; this.r = 40; } // Draw the ball render () { ctx.save(); ctx.beginPath(); ctx.arc(this.x, this.y, this.r, 0, Math.PI * 2); ctx.fillStyle = this.color; ctx.fill(); ctx.restore(); } } // 3. Class that moves the ball class MoveBall extends Ball { // Inherits constructor (x, y, color) { super(x, y, color); // Change in quantity // Random coordinates of the ball this.dX = Random(-5, 5); this.dY = Random(-5, 5); // Random number with smaller radius this.dR = Random(1, 3); } // 4. Change the position and radius of the ball upDate () { this.x += this.dX; this.y += this.dY; this.r -= this.dR; // Determine whether the radius of the ball is less than 0 if(this.r < 0) { this.r = 0 } } } // 5. Instantiate the ball // Store the generated ball let ballArr = []; // Define random function If you reference underscore-min.js, you don't need to write a random function, you can directly use _.random let Random = (min, max) => { return Math.floor(Math.random() * (max - min) + min); } // Listen for mouse movement canvas.addEventListener('mousemove', function (e){ // Random colors // You can also use a fixed color array let colorArr = ['red', 'green', 'blue', 'yellow', 'orange', 'pink']; // bgcolor ==> colorArr[Random(0, colorArr.length - 1)] let bgColor = `rgb(${Random(0,256)}, ${Random(0,256)}, ${Random(0,256)})`; ballArr.push(new MoveBall(e.offsetX, e.offsetY, bgColor)); console.log(ballArr); }) // Start the timer setInterval(function () { // Clear the screen ctx.clearRect(0, 0, canvas.width, canvas.height); // Draw the ball for (let i = 0 ; i < ballArr.length; i++ ) { ballArr[i].render(); ballArr[i].upDate(); } }, 50); SummarizeI hope this little demo can help you become more familiar with the understanding and use of classes in ES6. This is the end of this article on how to use ES6 class inheritance to achieve the effect of gorgeous small balls. For more relevant content about ES6 class inheritance to achieve small balls, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Summary of Linux sftp command usage
>>: Mysql varchar type sum example operation
This article summarizes some common MySQL optimiz...
Preface When making a page, we often encounter co...
1. Create a SpringBooot project and package it in...
In this article, I will explain in detail how to ...
Table of contents Effect display Component Settin...
This article shares the specific code of JS to ac...
Preface In daily development, we often encounter ...
1. Install vsftpd component Installation command:...
1. Install a virtual machine (physical machine) Y...
This article is welcome to be shared and aggregat...
Question Guide 1. How does Hadoop 3.x tolerate fa...
Component Basics 1 Component Reuse Components are...
1. Use data from table A to update the content of...
To install VMWare under Linux, you need to downlo...
1. Create the /usr/local/services/zookeeper folde...