pywallter/static/divhider.js

14 lines
318 B
JavaScript
Raw Normal View History

2020-11-29 02:05:19 +01:00
function divhider() {
var x = document.getElementsByClassName("msginfo");
x[0].style.visibility = "hidden";
}
function animation() {
var x = document.getElementsByClassName("msginfo");
x[0].style.animation = "disparition 0.2s 1";
}
window.setTimeout(divhider, 2200);
window.setTimeout(animation, 2000);