blob: 8fff0f3dc7533d05f5dc2cba0f34e6f79a98e3f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Loading {
constructor() {
this.object = {
loadingScreen: document.getElementById('loading')
}
}
Stop() {
this.object.loadingScreen.style.opacity = 0;
this.object.loadingScreen.style.zIndex = -9999;
}
Start() {
this.object.loadingScreen.style.opacity = 1;
this.object.loadingScreen.style.zIndex = 9999;
}
}
|