Created
July 4, 2014 13:08
-
-
Save anonymous/4e21fa509943521c0dd2 to your computer and use it in GitHub Desktop.
A template to get started with EaselJS.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://code.createjs.com/easeljs-0.7.0.min.js"></script> | |
<script> | |
function init() { | |
// code here. | |
} | |
</script> | |
</head> | |
<body onLoad="init();"> | |
<canvas id="demoCanvas" width="500" height="300"> | |
alternate content | |
</canvas> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment