Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. setInterval(function() {
  2. var boxes = document.getElementsByClassName('item-box');
  3.  
  4. var randomBox = boxes[Math.floor(Math.random() * boxes.length)];
  5.  
  6. randomBox.classList.add("error");
  7.  
  8. setTimeout(function() {
  9. randomBox.classList.remove("error");
  10. }, 2500);
  11. }, 3000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement