Guest User

Untitled

a guest
Dec 10th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. const progress: HTMLElement = document.querySelector('.progress');
  2.  
  3. let width = 0;
  4. this.zone.runOutsideAngular(() => {
  5. const widthInterval = setInterval(() => {
  6. width++;
  7. progress.style.width = `${width}%`;
  8.  
  9. if (width === 100) {
  10. clearInterval(widthInterval);
  11. }
  12. });
  13. });
Add Comment
Please, Sign In to add comment