search
HomeWeb Front-endJS TutorialNative JS realizes the dynamic effect of explosion (code example)

The content of this article is about the dynamic effect of explosion achieved by native JS. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

This sharing is a summary of my own component development. There are still many shortcomings. I hope you can provide valuable opinions and learn from each other.

Introduction to sharing content

Particle explosion effect components are realized through native js code
During the component development process, a very efficient engineering environment within the company was used. Hereby advertise: Sina Mobile is recruiting Various technologies are great! You can send your resume via private chat!

Effect preview

Native JS realizes the dynamic effect of explosion (code example)

Effect analysis

Click as the starting point for the animation to start and it will end automatically

Each effect produces multiple parabolic particle motion elements, with random directions and different display content. There are changes in the size of the Z-axis in space.

You can click without intervals if required, that is, the first group The second set of animations can be played before the animation ends

The basic animation execution duration is the same

After analyzing the above four points, what are the implementation solutions for animation implementation?

css operation state transformation (such as focus) causes child elements to perform animation

It is not advisable, the effect can be connected multiple times, css state transformation does not meet the requirements

Js control animation To start, write the css animation preset in advance, and use the class to include the selector to switch the animation. For example: .active .items{animation:xxx ...;}

is not advisable. There is no problem in executing the animation in a single time, but there is The effect is fixed, and the animation cannot be executed continuously

Write a large number of animations in advance, hide a large number of dom elements, and the animation starts to randomly select dom elements to execute its own unique animation keyframes

At the implementation level, it works It works, but when the comment list is long, the number of DOM is huge, and a large number of css animations cause a heavy code volume and no randomness

Abandon css animation and use canvas to draw animation

It is feasible, but canvas The maintenance cost is slightly high, and custom functions are difficult to design, and screen adaptation also has a certain cost.

js does DOM creation and generates random css @keyframes

It is feasible, but creating a style style sheet will cause css Re-rendering the page will cause the performance of the page to decrease, and the complexity of parabolic css is not low, so it is not the first choice for the time being.

js brushing the frame for dom rendering

is feasible, but the brushing frame operation will cause Performance pressure

Conclusion

Although canvas is feasible, due to its development shortcomings, this sharing does not use canvas as the shared content, but uses the last js to refresh the frame. DOM operation

Component structure

Shared by screenshots, animation can be divided into two modules. First, randomly divergent particles have common characteristics: parabolic animation, fade out, rendering expression

When the number of examples increases, it will be the effect in the screenshot

However, due to performance reasons, we need to control the particles and realize resource reuse, so a second module is needed as a particle management and control component.

So: This function can be developed using two modules: partial.js particle function and boom.js particle management

Implementing Partial.js

Pre-resource: The physical curve of parabolic motion needs to use the speed function provided by Tween.js

If you do not want to introduce Tween.js, you can use the following code

 
      * Tween.js
      * t: current time(当前时间);
      * b: beginning value(初始值);
      * c: change in value(变化量);
      * d: duration(持续时间)。
      * you can visit 'http://easings.net/zh-cn' to get effect
        *
    
        const Quad = {
            easeIn: function(t, b, c, d) {
                return c * (t /= d) * t + b;
            },
            easeOut: function(t, b, c, d) {
                return -c *(t /= d)*(t-2) + b;  
            },
            easeInOut: function(t, b, c, d) {
                if ((t /= d / 2) <p>Particle implementation<br>Implementation ideas: <br> I hope to use the new partial method to create particles when controlling particle components. Each particle has its own animation start method and animation end callback. <br> Since the comment list may have a huge number, we hope to create only a limited number of particles globally, so we provide the function of removing particles from the container and adding particles to the container to realize the reuse of particles</p><p>partical_style.css</p><pre class="brush:php;toolbar:false">     
     //粒子充满粒子容器,需要容器存在尺寸以及relative定位
     .Boom-Partical_Holder{
         position: absolute;
         left:0;
         right:0;
         top:0;
         bottom:0;
         margin:auto;
     }

particle.js

 
 import "partical_style.css";
 
 class Partical{
     // dom为装载动画元素的容器 用于设置位置等样式
     dom = null;
     // 动画开始时间
     StartTime = -1;
     // 当前粒子的动画方向,区别上抛运动与下抛运动
     direction = "UP";
     // 动画延迟
     delay = 0;
     // 三方向位移值
     targetZ = 0;
     targetY = 0;
     targetX = 0;
     // 缩放倍率
     scaleNum = 1;
     // 是否正在执行动画
     animating = false;
     // 粒子的父容器,标识此粒子被渲染到那个元素内
     parent = null;
     // 动画结束的回调函数列表
     animEndCBList = [];
     // 粒子渲染的内容容器 slot
     con = null;
     
     constructor(){
         //创建动画粒子dom
         this.dom = document.createElement("p");
         this.dom.classList.add("Boom-Partical_Holder");
         this.dom.innerHTML = `
             <p>
                 Boom
             </p>
         `;
     }
     
     // 在哪里渲染
     renderIn(parent) {
         // dom判断此处省略
         parent.appendChild(this.dom);
         this.parent = parent;
         // 此处为初始化 slot 容器
         !this.con && ( this.con = this.dom.querySelector(".Boom-Partical_con"));
     }
     
     // 用于父容器移除当前粒子
     deleteEl(){
         // dom判断此处省略
         this.parent.removeChild(this.dom);
     }
     
     // 执行动画,需要此粒子执行动画的角度,动画的力度,以及延迟时间
     animate({ deg, pow, delay } = {}){
         // 后续补全
     }
     
     // 动画结束回调存储
     onAnimationEnd(cb) {
         if (typeof cb !== 'function') return;
         this.animEndCBList.push(cb);
     }
     
     // 动画结束回调执行
     emitEndCB() {
         this.dom.style.cssText += `;-webkit-transform:translate3d(0,0,0);opacity:1;`;
         this.animating = false;
         try {
             for (let cb  of this.animEndCBList) {
                 cb();
             }
         } catch (error) {
             console.warn("回调报错:",cb);
         }
     }
     
     // 简易实现slot功能,向粒子容器内添加元素
     insertChild(child){
         this.con.innerHTML = '';
         this.con.appendChild(child);
     }
 }

To this end, we first created a constructor for the particle object. Now consider whether we have implemented our design idea?

  • Use the constructor new Partical() particle

  • The particle strength object exists animate execution animation method

  • Storage and execution of the animation end callback function

  • Set the parent element of the particle: renderIn method

  • Delete the particle from the parent element: deleteEl method

In order to better display the particle content, we specially created a Boom-Partical_con element in the constructor to simulate the slot function: insertChild method, used for users to display different content. explode

The above is the detailed content of Native JS realizes the dynamic effect of explosion (code example). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
html5的div一行可以放两个吗html5的div一行可以放两个吗Apr 25, 2022 pm 05:32 PM

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别是什么html5中列表和表格的区别是什么Apr 28, 2022 pm 01:58 PM

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

html5怎么让头和尾固定不动html5怎么让头和尾固定不动Apr 25, 2022 pm 02:30 PM

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有哪些html5中不支持的标签有哪些Mar 17, 2022 pm 05:43 PM

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

Html5怎么取消td边框Html5怎么取消td边框May 18, 2022 pm 06:57 PM

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

html5为什么只需要写doctypehtml5为什么只需要写doctypeJun 07, 2022 pm 05:15 PM

因为html5不基于SGML(标准通用置标语言),不需要对DTD进行引用,但是需要doctype来规范浏览器的行为,也即按照正常的方式来运行,因此html5只需要写doctype即可。“!DOCTYPE”是一种标准通用标记语言的文档类型声明,用于告诉浏览器编写页面所用的标记的版本。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.