SquirrelInBox

Untitled

Oct 30th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>class</title>
  5.  
  6. <style>
  7. .rect{
  8. position: absolute;
  9. width:50px;
  10. height:50px;
  11. background:red;
  12. }
  13. html, body {
  14. height: 500;
  15. }
  16. </style>
  17.  
  18. <script type="text/javascript">
  19. function createRect(e) {
  20. e = e || window.event; //для IE - window
  21. var div = document.createElement('div');
  22. div.className = "rect";
  23. div.style.left = e.clientX + "px"; //координата относительно текущего окна
  24. div.style.top = e.clientY + "px";
  25. document.body.appendChild(div);
  26. }
  27. </script>
  28. </head>
  29. <body onclick="createRect(event)">
  30.  
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment