curve-source.mustache revision 9e916064638e1ec4de5d997bf484bb1138b5325e
<div id="demo-stage">
<span id="demo"></span>
</div>
<script type="text/javascript">
YUI().use('anim', function(Y) {
var node = Y.one('#demo');
var anim = new Y.Anim({
node: node,
duration: 1.5,
easing: Y.Easing.easeOut
});
var randomCurve = function(end) {
var points = [],
n = 3,
winWidth = node.get('winWidth'),
winHeight = node.get('winHeight');
for (var i = 0; i < n; ++i) {
Math.floor(Math.random() * winWidth),
Math.floor(Math.random() * winHeight)
]);
}
if (end) {
points.push(end);
}
return points;
};
var onClick = function(e) {
anim.set('to', {
});
anim.run();
};
Y.one('#demo-stage').on('click', onClick);
});
</script>