Posts by teylorrt • 11 points
3 posts
-
0
votes2
answers327
viewsA: Transitions on a page
If I understand what you want, you do not need to create transition between pages. Just use a Carousel for this. The Bootstrap is very good: https://getbootstrap.com/docs/4.0/components/carousel/…
-
0
votes1
answer45
viewsA: ngFor generating many calls
This happens because of Change Detection as already mentioned. Each time you add to the array, it detects and runs ngFor* once more. It’s like it’s the code below: let totalExecucao = 0; let array =…
-
1
votes1
answer1071
views