Implement an appearance animation

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2024-05-02 19:41:41 +05:00
parent 49bb43c654
commit 6cb8ce8951
Signed by: mctaylors
GPG key ID: 7181BEBE676903C1
4 changed files with 66 additions and 11 deletions

View file

@ -4,7 +4,10 @@ window.onload = function() {
function play(audioId) {
let audioElement = document.getElementById(audioId);
audioElement.play();
setTimeout(function() {
audioElement.play();
}, 1000
)
}
function close_button(href) {