Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. context.fillStyle="yellow";
  2. context.fillRect(0,0,100,100);
  3. context.fillStyle="blue";
  4. context.fillRect(50,50,100,100);
  5.  
  6. Y = Yellow, B = Blue
  7.  
  8. Y Y Y Y
  9. Y Y Y Y
  10. Y Y B B B B
  11. Y Y B B B B
  12. B B B B
  13. B B B B
  14.  
  15. context.globalAlpha=0.5;
  16. context.fillStyle="yellow";
  17. context.fillRect(0,0,100,100);
  18. context.fillStyle="blue";
  19. context.fillRect(50,50,100,100);
  20.  
  21. Y = Yellow, B = Blue, M = Mix of both
  22.  
  23. Y Y Y Y
  24. Y Y Y Y
  25. Y Y M M B B
  26. Y Y M M B B
  27. B B B B
  28. B B B B
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement