Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title>Mouse Coordinates</title>
  6. <link rel="stylesheet" href="stylee.css"/>
  7. <style>
  8. body {
  9. text-align: center;
  10. }
  11. #coordinates {
  12. width: 600px;
  13. height: 500px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <label>
  19. <textarea onmousemove="printCoordinate()" name="mouseCoordinates" id="coordinates" cols="30" rows="10"></textarea>
  20. </label>
  21. <script>
  22. function printCoordinate() {
  23. var x = event.clientX;
  24. var y = event.clientY;
  25. document.getElementById('coordinates').value += 'X:' + x + '; Y:' + y + ' Time: ' + new Date() + '\n';
  26. }
  27. document.addEventListener('mousemove', printCoordinate, false);
  28. </script>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement