Timer Redirect

Hello,

Looking for a suggestion on how to accomplish a page rotation? I have 3 pages what I want to rotate through, for a display we're setting up. What mechanism can I use load the next page after say 15 seconds?

You can use setInterval:

This article shows how to declare custom JavaScript function and how to call it:

Thank you, this also works as an execute:

   setTimeout(() => {
        this.router.navigate(['/rotation-2',this.PlantId,this.WorkCenterID]);
    }, 5000);  //5s

Cheers!