Advertisement
Guest User

Untitled

a guest
Feb 28th, 2021
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
  8.  
  9. </head>
  10.  
  11. <body>
  12.  
  13. <canvas id="drawingCanvas" style="user-select: none;
  14. -webkit-user-select: none;
  15. -moz-user-select: none;
  16. touch-action: none;">
  17. </canvas>
  18.  
  19. <script>
  20. var canvas = document.getElementById("drawingCanvas");
  21. var ctx = canvas.getContext("2d");
  22.  
  23. (function ()
  24. {
  25. initialize();
  26. }());
  27.  
  28. function initialize()
  29. {
  30. canvas.width = 500;
  31. canvas.height = 500;
  32.  
  33. ctx.beginPath();
  34. ctx.rect(0, 0, canvas.width, canvas.height);
  35. ctx.fillStyle = "#000";
  36. ctx.fill();
  37. }
  38.  
  39. </script>
  40.  
  41.  
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement