Click button below to move the image to right. Little Animation using java script. This is going to be moving the right side of the image from Java Script or HTML, every click. <html> <head> <title>JavaScript Animation</title> <script type="text/javascript"> <!-- var imgObj = null; function init(){ imgObj = document.getElementById('myImage'); imgObj.style.position= 'relative'; imgObj.style.left = '0px'; } function moveRight(){ imgObj.style.left = parseInt(imgObj.style.left) + 10 + 'px'; } window.onload =init; //--> </script> </head> <body> <form> <img id=&quo
auto redirected <html> <head> <script type="text/javascript"> <!-- function Redirect() { window.location="http://www.google.com"; } document.write("You will be redirected to main page in 10 sec."); setTimeout('Redirect()', 10000); //--> </script> </head> <body> </body> </html>
Comments
Post a Comment