Guest User

Untitled

a guest
May 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <link rel="stylesheet" type="text/css" href="../css/style.css">
  2.  
  3. canvas {
  4. position: absolute;
  5. width: '100%';
  6. height: Ti.UI.SIZE;
  7. top: 0;
  8. bottom: 0;
  9. left: 0;
  10. right:0;
  11. background-color: yellow;
  12. }
  13.  
  14. <script type="text/javascript" src="../scripts/main.js"></script>
  15.  
  16. var canvas = document.getElementById("canvas");
  17. var ctx = canvas.getContext("2d");
  18. ctx.fillStyle = "blue";
  19. ctx.fillRect(0, 0, canvas.width, canvas.height);
  20.  
  21. ctx.fillStyle = "red";
  22. ctx.fillRect(10, 10, 40, 40);
Add Comment
Please, Sign In to add comment