0
mirror of https://github.com/Hello9999901/laptop.git synced 2026-03-16 09:56:59 +00:00
2024-07-11 00:54:48 -04:00

12 lines
331 B
JavaScript

function animate() {
const animateElements = document.querySelectorAll('.animate')
animateElements.forEach((element, index) => {
setTimeout(() => {
element.classList.add('show')
}, index * 150)
});
}
document.addEventListener("DOMContentLoaded", animate)
document.addEventListener("astro:after-swap", animate)