Advertisement
virtualideaz

animation.html

Apr 4th, 2015
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.63 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <!--animation example-->
  4.     <title>JavaScript Animation</title>
  5.     <script type="text/javascript">
  6.     <!--
  7.         var imgObj = null;
  8.         function init() {
  9.         imgObj = document.getElementById('myImage');
  10.         imgObj.style.position ='relative';
  11.         imgObj.style.left = '0px';
  12.         }
  13.         function moveRight() {
  14.             imgObj.style.left = parseInt(imgObj.style.left) + 10 + 'px';
  15.         }
  16.         window.onload= init;
  17.         //-->
  18.     </script>
  19. </head>
  20.  
  21. <body>
  22.     <form>
  23.         <img id="myImage" src="c.jpg"/>
  24.         <p>Click the button to move the image to the right</p>
  25.         <input type="button" value="Click Me" onclick="moveRight()"></input>
  26.     </form>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement