phantasma/app/static/js/animation.js

13 lines
500 B
JavaScript
Raw Normal View History

2021-10-21 17:10:13 +01:00
document.querySelectorAll('body.animated').forEach(element => {
var animationDuration = 60;
var randomDuration = Math.random() * animationDuration;
element.style.animationDelay = -randomDuration + 's';
})
document.querySelectorAll('.animated-title').forEach(element => {
var animationDuration = 60;
var randomDuration = Math.random() * animationDuration;
element.querySelectorAll('.text').forEach(text => {
text.style.animationDelay = -randomDuration + 's';
2021-10-22 09:21:43 +01:00
})
2021-10-21 17:10:13 +01:00
})