splash-screen.component.ts
665 Bytes
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-splash-screen',
templateUrl: './splash-screen.component.html',
styleUrls: ['./splash-screen.component.scss']
})
export class SplashScreenComponent implements OnInit {
timerSplashScreen = 2000;
showSplashScreen = true;
textWelcome = 'BIENVENIDO A SPOT!';
textComoEstas = '¿cómo estás?';
textInvitamos = 'TE INVITAMOS A HACER';
textTuPedido = 'tu pedido acá';
constructor() {}
ngOnInit() {
localStorage.clear();
setTimeout(() => {
this.showSplashScreen = false;
}, this.timerSplashScreen);
$('body').removeClass('media-pantalla');
}
}