splash-screen.component.ts
595 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 estas?';
textInvitamos = 'TE INVITAMOS A HACER';
textTuPedido = 'tu pedido acá';
constructor() { }
ngOnInit() {
setTimeout(() => {
this.showSplashScreen = false;
}, this.timerSplashScreen);
}
}