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; } }