18 lines
448 B
PHP
Executable File
18 lines
448 B
PHP
Executable File
</main>
|
|
<script>
|
|
(function() {
|
|
var alerts = document.querySelectorAll('.alert');
|
|
for (var i = 0; i < alerts.length; i++) {
|
|
(function(el) {
|
|
setTimeout(function() {
|
|
el.style.transition = 'opacity 0.5s';
|
|
el.style.opacity = '0';
|
|
setTimeout(function() { el.style.display = 'none'; }, 500);
|
|
}, 5000);
|
|
})(alerts[i]);
|
|
}
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|