onclick navigate to another page after 4 seconds in angular code example
Example: how to delay redirect in javascript
// redirect to google after 5 seconds
window.setTimeout(function() {
window.location.href = 'http://www.google.com';
}, 5000);