12 lines
389 B
JavaScript
12 lines
389 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
document.querySelectorAll('.alert').forEach(function (alert) {
|
|
setTimeout(function () {
|
|
alert.style.opacity = '0';
|
|
alert.style.transform = 'translateY(-6px)';
|
|
setTimeout(function () {
|
|
alert.style.display = 'none';
|
|
}, 220);
|
|
}, 4200);
|
|
});
|
|
});
|