vuolter / FIREWORKS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FIREWORKS(Library)

A Pen created on CodePen.io. Original URL: https://codepen.io/nuton0413/pen/bGpaoKo.

This is a small library that displays a fireworks animation on the dom element you select.
This library requires PixiJS.

minify: https://codepen.io/nuton0413/pen/ExKEZrj.js
example: https://codepen.io/nuton0413/pen/QWNgzKO

// initialize
const firewroks = new FIREWORKS({
full_screen(boolean),
target_node(dom element),
amount(number),
});

"full_screen": Let canvas cover the entire window.
If this option is enabled, the "target_node" will be ignored.

"target_node": A DOM element that displays fireworks.
"amount": Maximum number of fireworks to be displayed at the same time.

// start animation
fireworks.start_burst();

// Methods
start_burst() -> Start the fireworks animation
stop() -> Pause the fireworks animation
restart() -> Resume the fireworks animation

About

License:MIT License


Languages

Language:JavaScript 100.0%