Guest User

Untitled

a guest
Aug 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. clickBool = false
  2.  
  3. contentClick = ->
  4. clickBool = unless a then true else false
  5. @animate
  6. opacity: 0.0,
  7. marginTop: '-1000'
  8. , 750, ->
  9. element = a ? "virtualsystem" : "splash"
  10. ($ "##{element}" ).css
  11. 'z-index': '1000',
  12. marginTop: '-1000'
  13. .animate
  14. opacity: 1.0
  15. , 750
  16.  
  17. ($ '#bg' ).animate
  18. opacity: 0.0
  19. , 500, ->
  20. image = a ? "bg" : "bg2"
  21. ($ '#bg' ). attr
  22. 'src' : "img/#{image}.jpg"
  23. .animate
  24. opacity: 1.0
  25. , 500
  26.  
  27. ($ '#splash, #virtualsystem').click contentClick
Add Comment
Please, Sign In to add comment