Advertisement
Guest User

Untitled

a guest
Jan 13th, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function moveTo(toX,toY) {
  6.     var elem = document.getElementById('box1');
  7.     elem.style.transform = "translate(" + toX + "px," + toY + "px)";
  8. }
  9.  
  10. function start() {
  11.     moveTo(300,300);
  12. }
  13. </script>
  14. </head>
  15. <body>
  16. <button onclick="start();">start</button>
  17. <div id="box1"><img src="kp.jpg" /></div>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement