NXInspired/assets/js/main.js
mctaylors 6cb8ce8951
Implement an appearance animation
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
2024-05-02 19:41:41 +05:00

21 lines
No EOL
401 B
JavaScript

window.onload = function() {
play("error");
}
function play(audioId) {
let audioElement = document.getElementById(audioId);
setTimeout(function() {
audioElement.play();
}, 1000
)
}
function close_button(href) {
play("click");
window.location.href = href;
}
function details_button() {
play("click");
// TODO: this button does nothing for now :)
}