Created
December 7, 2014 22:24
-
-
Save acidsound/1a91d559cf580d6689b4 to your computer and use it in GitHub Desktop.
fabricjs on meteor
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
<head> | |
<title>fabricjs</title> | |
<script src="fabric.js"></script> | |
</head> | |
<body> | |
<h1>Fabric</h1> | |
{{> main}} | |
</body> | |
<template name="main"> | |
<canvas id="c" width="800" height="350"></canvas> | |
</template> |
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
Meteor.startup(function() { | |
window.canvas = new fabric.Canvas('c'); | |
}); | |
Template.main.rendered = function() { | |
var circle = new fabric.Circle({ | |
left: 100, | |
top: 100, | |
radius: 50 | |
}); | |
circle.setGradient('fill', { | |
x1: 0, | |
y1: 0, | |
x2: 0, | |
y2: circle.height, | |
colorStops: { | |
0: '#000', | |
1: '#fff' | |
} | |
}); | |
canvas.add(circle); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
fabric.js 파일은 public 아래에