Created
July 4, 2012 17:05
-
-
Save stpettersens/3048351 to your computer and use it in GitHub Desktop.
HTML5 canvas 'layers'.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<canvas id="demo-base" style="z-index: 0;" width="730" height="300"> | |
</canvas> | |
<canvas id="demo-ui" style="z-index: 1;" width="730" height="300"> | |
</canvas> | |
<canvas id="demo-overlay" style="z-index: 2;" width="730" height="300"> | |
<!-- Message when CANVAS is not supported --> | |
<em>Your browser does not support the CANVAS element.<br/> | |
Please use an <a href="http://html5.com">HTML5</a> | |
-compliant browser to view this demonstration.</em> | |
<!-- /Message --> | |
</canvas> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment