Guest User

Untitled

a guest
Oct 22nd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <title>The Golf Page</title>
  5. <style type="text/css">
  6.  
  7. body {font-family:Arial, Helvetica, sans-serif; font-size: 18pt; color:blue; background-image: url(clouds.jpg)}
  8. #Title {position: absolute; left:395px; top:260px;padding-left:395;padding-top:260;padding-bottom:0;border-style:solid; border-width:1 3 3 1; border-color:blue;background-color:rgb(0,255,0)}
  9. #Ball {position:relative; top:0px; left:0px}
  10. #Ball img {border-width: 0px}
  11. #box {width:600px; height: 250px;border-style:solid; border-width:1 4 4 1; border-color:blue; background-color:rgb(0,255,0); text-align: center}
  12. #Slogan {visibility: hidden; position: relative; top: 250px;color:black; font-family: Times New Roman, Times, serif;font-style:italic; font-weight:bold}
  13. </style>
  14.  
  15. <script type="text/javascript">
  16.  
  17. function placeIt(id, x, y) {
  18. object=document.getElementById(id);
  19. object.style.left=x+"px";
  20. object.style.top=y+"px";
  21. }
  22.  
  23. var x = new Array(-395, -389, -383, -377, -371, -365, -359, -353, -346,
  24. -340, -334, -328, -322, -316, -310, -304, -297, -291, -285, -279, -273,
  25. -267, -261, -255, -248, -242, -236, -230, -224, -218, -212, -206, -199,
  26. -193, -187, -181, -175, -169, -163, -157, -150, -144, -138, -132, -126,
  27. -120, -114, -108, -101, -95, -93, -91, -88, -86, -83, -81, -78, -76, -73,
  28. -71, -69, -66, -64, -61, -59, -56, -54, -51, -49, -47, -44, -42, -39, -37,
  29. -34, -32, -29, -27, -24, -22, -20, -17, -15, -12, -10, -7, -5, -2, 0);
  30.  
  31. var y = new Array(-300, -300, -300, -299, -298, -297, -296, -294, -292,
  32. -290, -288, -285, -282, -279, -276, -272, -268, -264, -260, -255, -250,
  33. -245, -240, -234, -228, -222, -216, -209, -202, -195, -188, -180, -172,
  34. -164, -156, -147, -138, -129, -120, -110, -100, -90, -80, -69, -58, -47,
  35. -36, -24, -12, 0, -5, -10, -14, -18, -22, -25, -29, -32, -34, -37, -39,
  36. -41, -43, -45, -46, -47, -48, -48, -48, -48, -48, -48, -47, -46, -45, -43,
  37. -42, -40, -37, -35, -32, -29, -26, -23, -19, -15, -11, -6, 0);
  38.  
  39. var index=0;
  40.  
  41. function moveBall(){
  42. if (index<=x.length-1){
  43. placeIt("Ball", x[index], y[index]);
  44. index++;
  45. setTimeout("moveBall()",5)
  46. }
  47. else
  48. document.getElementById("Slogan").style.visibility="visible";
  49. }
  50.  
  51. </script> something 20 milliseconds later
  52. }
  53. }
  54.  
  55. </script>
  56.  
  57. </HEAD>
  58. <BODY onLoad="javascript:moveBall();">
  59.  
  60.  
  61. <DIV ID="Title">
  62. THE G<SPAN ID="Ball" STYLE="position:relative;left:0;top:0"><IMG SRC="../Ball.gif" BORDER=0></SPAN>LF PAGE
  63. </DIV>
  64.  
  65. <DIV ID="Slogan">
  66. <center>Your Online Source of Golf Equipment</center>
  67. </DIV>
  68. </BODY>
  69. </HTML>
Add Comment
Please, Sign In to add comment