splash-screen.component.ts
682 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() {
setTimeout(() => {
this.showSplashScreen = false;
}, this.timerSplashScreen);
//
$(document).ready(function(){
$("body").removeClass("lash");
});
}
}