Rezervovať
document.addEventListener("DOMContentLoaded", function () {
const button = document.querySelector(".floating-button");
// Pridanie triedy "animate" pre animáciu
button.classList.add("animate");
// Po 2 sekundách vrátime tlačidlo do pôvodného stavu
setTimeout(() => {
button.classList.remove("animate");
button.classList.add("reset");
// Odstránenie triedy reset po animácii
setTimeout(() => {
button.classList.remove("reset");
}, 500);
}, 2000);
});