Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!doctype html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>Canvas</title>
  5. <script>
  6. function rysuj(){
  7. var k =canvas=document.getElementById("canvas");
  8. var k =canvas.getContext("2d");
  9. k.beginPath();
  10. k.rect(0,0,300,100);
  11. k.fillStyle="white";
  12. k.fill();
  13. k.beginPath();
  14. k.rect(0,100,300,200);
  15. k.fillStyle="red";
  16. k.fill();
  17. var podpis=document.getElementById("podpis");
  18. var k2=podpis.getContext("2d");
  19. k2.font='20pt Arial';
  20. k2.fillStyle='green';
  21. k2.fillText('Polska',110,25);
  22. }
  23. </script>
  24. </head>
  25. <body onload="rysuj();">
  26. <canvas id="canvas" width="300" height="200" style="border: 1px solid black;">
  27. </canvas>
  28. <br>
  29. <canvas id="podpis" width="300" height="50">
  30. </canvas>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement