Guest User

Untitled

a guest
Jun 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var startButton = document.querySelector('.start-button');
  2. startButton.addEventListener("click", movement);
  3.  
  4. function movement() {
  5. function markup(i) {
  6. return function () {
  7. console.log(i);
  8. markupLeft[i].classList.toggle('markup-lighting');
  9. }
  10. }
  11. for(var i = 0;i<markupLeft.length; i++) {
  12. setTimeout(markup(i), i * 100);
  13. }
  14. }
Add Comment
Please, Sign In to add comment