Guest User

Untitled

a guest
Jun 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var t = setInterval(function appear(){
  2. var ghost = document.getElementById("ghost");
  3. if (ghost.style.display == "none")
  4. {ghost.style.display = "block";}
  5. else
  6. {var t1 = setTimeout(function disappear(){
  7. ghost.style.display = "none";
  8. }, 1)}
  9. }, 6000)
  10.  
  11. ghost.style.display == "none"
Add Comment
Please, Sign In to add comment