Skip to content

Instantly share code, notes, and snippets.

Created July 4, 2014 13:08
Show Gist options
  • Save anonymous/4e21fa509943521c0dd2 to your computer and use it in GitHub Desktop.
Save anonymous/4e21fa509943521c0dd2 to your computer and use it in GitHub Desktop.
A template to get started with EaselJS.
<!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