rDrama/files/assets/js/fireworks.js

39 lines
889 B
JavaScript
Raw Normal View History

2022-07-16 21:00:02 +00:00
const fireworks = document.getElementsByClassName("firework")
2022-12-04 15:40:32 +00:00
let counter = 0
2022-07-16 21:00:02 +00:00
for (let firework of fireworks){
2022-12-04 15:40:32 +00:00
const timeout = 2000 * counter
2022-07-16 21:00:02 +00:00
counter++
setTimeout(() => {
setInterval(() => {
firework.firstElementChild.src = "/i/firework-trail.webp"
2022-12-04 15:40:32 +00:00
const xpos = Math.floor(Math.random() * 80) + 5
let ypos = 95
2022-07-16 21:00:02 +00:00
firework.style.top=ypos+"%"
firework.style.left=xpos+"%"
2022-09-04 23:15:37 +00:00
2022-07-16 21:00:02 +00:00
firework.style.display="inline-block"
2022-12-04 15:40:32 +00:00
const hue = Math.floor(Math.random()*360)+1
2022-07-16 21:00:02 +00:00
firework.style.filter="hue-rotate("+hue+"deg)"
2022-09-04 23:15:37 +00:00
2022-12-04 15:40:32 +00:00
let id = null
const height = Math.floor(Math.random()*60)+15
2022-07-16 21:00:02 +00:00
clearInterval(id);
id = setInterval(frame, 20);
2022-09-04 23:15:37 +00:00
2022-12-04 15:40:32 +00:00
const vnum = Math.floor(Math.random()*1000)
2022-09-04 23:15:37 +00:00
2022-07-16 21:00:02 +00:00
function frame() {
if (ypos <= height) {
clearInterval(id);
firework.firstElementChild.src = "/i/firework-explosion.webp?v="+vnum
} else {
2022-09-04 23:15:37 +00:00
ypos--;
2022-07-16 21:00:02 +00:00
firework.style.top=ypos+"%"
}
2022-09-04 23:15:37 +00:00
}
2022-07-16 21:00:02 +00:00
}, 5000)
}, timeout)
2022-12-04 15:40:32 +00:00
}