Advertisement
Guest User

Untitled

a guest
Apr 27th, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript" src="http://konami-js.googlecode.com/svn/trunk/konami.js"></script>
  2. <script type="text/javascript">
  3. konami = new Konami();
  4.  
  5. var woonMoving = 0;
  6.  
  7. konami.code = function() {
  8. if (woonMoving == 0) {
  9. woonMoving = 1;
  10. woonPos = -48;
  11. moveWoona();
  12. }
  13. }
  14.  
  15. konami.load();
  16.  
  17. var woonTime;
  18.  
  19. var woonPos;
  20.  
  21. function moveWoona() {
  22. document.getElementById('woona').style.left = woonPos;
  23. woonPos = woonPos + 1;
  24. woonTime = setTimeout("moveWoona()", 34);
  25. }
  26.  
  27. </script>
  28.  
  29. <img id="woona" style="position:fixed;top:40%;left:-48" src="http://scootaloo.srb2.org/woonaskip.gif" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement