Guest User

Untitled

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