Fireworks Effect Using CSS and JS
This tutorial tells about the fireworks effect using the CSS and JS. Working on Fireworks effect using CSS and JS <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Fireworks Effects</title> <link rel=”stylesheet” href=”style.css”> </head> <body> <div id=”fireworks-container”></div> <script src=”script.js”></script> </body> </html> style.css body { margin: 0; overflow: hidden; background: white; } #fireworks-container …