Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Srict//EN"
  2. "http://www.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title> Kangaroo </title>
  6. <script type="text/javascript">
  7. <!-- HIDE FROM INCOMPATIBLE BROWsERS
  8. var up_or_down;
  9. var begin;
  10. position = 0;
  11. horizontal = new Array(10);
  12. horizontal[0]=10;
  13. horizontal[1]=60;
  14. horizontal[2]=110;
  15. horizontal[3]=160;
  16. horizontal[4]=210;
  17. horizontal[5]=260;
  18. horizontal[6]=310;
  19. horizontal[7]=360;
  20. horizontal[8]=410;
  21. horizontal[9]=460;
  22. function hop() {
  23. if (up_or_down == "up") {
  24. document.getElementById("kangaroo").style.top = 60 + "px" ;
  25. up_or_down = "down";
  26. }
  27. else {
  28. document.getElementById("kangaroo").style.top = 120 + "px" ;
  29. up_or_down = "up";
  30. }
  31. document.getElementById("kangaroo").style.left = horizontal[position] +
  32. "px";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement