


Fireworks effect based on jQuery (sports-related) click the screen to display fireworks_jquery
Rendering
Core code:
$(function(){
$(document).click(function(event){
/*1. Create a DIV and insert it into the body
*2. Set its initial position: TOP is The height of the screen, left is the pageX value of the mouse when the mouse is clicked;
*/
//Create DIV
var $div = $("");
var eLeft = event.pageX;
var etop = event.pageY;
var cHeight = document.documentElement.clientHeight;
//Set the color, size, and initialization position
$div. css({"width":4,"height":15,"background-color":"red","top":cHeight,"left":eLeft});
//Insert into the body of the page Go;
$("body").append($div);
//Don't have scroll bars
$("body").css("overflow","hidden");
//Move the DIV up, and after moving it to the mouse position, delete the DIV element, and then perform the fireworks effect;
$div.animate({"top":etop},700,function(){
//Remove DIV
$(this).remove();
/*Firework effect
*1. Fireworks are composed of many DIVs
*2. The color of each firework is different
*3. The positions of the fireworks are also different
*4. The directions of the fireworks are different
*5. The fireworks have a falling feeling
*/
//Create many DIVs using loops , to represent fireworks
for(i=0;i<20;i ){
$("body").append($(" "));
}
/*The color of the fireworks is random, and the color value is expressed in hexadecimal, so random numbers are combined with hexadecimal;
*The maximum value in hexadecimal ffffff , converted to decimal 16777215;
*Math.random()*16777215 formula can get a number between 0-16777215, because it is a decimal, so rounding is required;
*Math.ceil(Math.random ()*16777215) generates a random decimal value within the color value range;
*Math.random()*9 1 formula can get a number between 1-10, and so on
*. The toString(16) method converts the obtained decimal number into hexadecimal number, which is a random color value;
*/
var sjColor = ""
function changColor(){
sjColor = Math.ceil(Math.random()*16777215).toString(16)//;
//When the random color value generated is less than 6 digits, it needs to be filled in , and does not change its value, so add zero in front of this number;
while(sjColor.length<6){
sjColor = "0" sjColor;
}
}
//Set the color and position of the fireworks DIV, scatter, and fall
$(".yh").css({"width":3,"height":3,"top": etop,"left":eLeft});
/*When the fireworks disperse, set left and top
*Math.random()*20-20. You need to subtract 20 here because the fireworks are from the left and right of the center point. Scattered,
* when the minimum random number is 0-10 = -10, when the maximum random number is 20-10=10; so it is between plus and minus 10
*/
$(".yh" ).each(function(index, element) {
var $this = $(this);
changColor()
var yhX = Math.random()*400-200;
var yhY = Math.random()*600-300;
$this.
css({"background-color":"#" sjColor,"width":3,"height":3}).
animate({"top":etop-yhY,"left":eLeft-yhX},500);//Spread out
for(i=0;i<30;i ){
//Judge Fireworks on the right or left when the mouse is clicked
if(yhX<0){
downPw($this," ");//Down right
}else{
downPw($this," -");//Falling left
}
}
//Falling effect, that is, changing the X and Y of the firework element at the same time, it will have a parabola feel, and then delete the firework after completing the animation Element
function downPw(odiv,f){
odiv.animate({"top":" =30","left":f "=4"},50,function(){
setTimeout (function(){odiv.remove()},2000);
})
}
});
});
})
})
1. Function
Click on the page to see the effect shown above and fall.
2. Function analysis
1. Create a DIV when clicked and insert it into the body
2. Fireworks are composed of many DIVs, so these DIVs must also be created at the same time
3. The color of each firework They are different, so a random function is needed to process the color value
4. The position of the fireworks is also different, so a random function is also needed to process the position
5. The fireworks scatter in different directions
6. The fireworks feel like they are falling
3. Summary:
3.1. Random number Math.random() is a number between zero and one;
3.11Math.random() is multiplied by any number, and the result is between 0 and the multiplier. The value of Math.random()*9 is a number between 0-9
3.12 If you want the starting value to be another specified number, not zero, add this number;
Math.random()*8 2 The result is a number between 2-10
3.13 If you want a number between positive and negative, subtract half of the multiplier
Math.random()* 8-4, the result is a number between 4 and -4
3.2 Movement core
3.21 is to change the X coordinate or Y coordinate of the element in the current page (addition, subtraction, multiplication , division, etc., as long as the operation can change the value)
3.22 How to change it so that it looks like it is moving?
Every time it changes, it refers to the current X or Y coordinate of the reference element. (Because every time it changes, the coordinates of this element will change) Therefore, it is always necessary to obtain the X or Y coordinate value of the current element after it changes.
3.3 Random color value
Color value is a hexadecimal number. And this value also has a range, so we need to get its range first.
000000-FFFFFF.
Then it needs to be converted into a decimal range
0-16777215
With this range, random numbers can be used to generate color values within this range. Of course, you still have to convert it to hexadecimal in the end, and don't forget to add the "#" sign in front of the color value
3.4 Falling Feeling
In fact, it is to let the element have a parabolic change, that is, let the element's The values of X and Y change at the same time.
(When using setTimeout, don’t point this to the wrong one!~~)
Online demo:
http://demo.jb51.net/js/2012 /myyanhua/Package download:
myyanhua_jb51.rar

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

This article series was rewritten in mid 2017 with up-to-date information and fresh examples. In this JSON example, we will look at how we can store simple values in a file using JSON format. Using the key-value pair notation, we can store any kind

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig
