Created
May 3, 2015 05:22
-
-
Save rafszul/fdf69089e9bfcb846d06 to your computer and use it in GitHub Desktop.
Fabric.js template html file
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> | |
<meta charset="utf-8"> | |
<script src="https://rawgit.com/kangax/fabric.js/master/dist/fabric.js"></script> | |
</head> | |
<body> | |
<canvas id="c" width="300" height="300" style="border:1px solid #ccc"></canvas> | |
<script> | |
(function() { | |
var canvas = new fabric.Canvas('c'); | |
})(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment