Advertisement
Guest User

Untitled

a guest
Apr 27th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  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 changeImg(){
  8. if (woonMoving == 0)
  9. {
  10. woonMoving = 1;
  11. woonPos = -48;
  12. moveWoona();
  13. }
  14. konami.load()
  15.  
  16. var woonTime;
  17.  
  18. var woonPos;
  19.  
  20. function moveWoona()
  21. {
  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