Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. var Qcanvas = function() {
  2. var canvas = document.createElement("canvas");
  3. canvas.style.position = "absolute";
  4. canvas.style.top = "0px";
  5. canvas.style.left = "0px";
  6.  
  7. canvas.width = window.innerWidth;
  8. canvas.height = window.innerHeight;
  9.  
  10. document.body.appendChild(canvas);
  11.  
  12. return {canvas: canvas, ctx: canvas.getContext("2d")};
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement