paper.js/examples/Animated/RoundedRectangles.html

46 lines
1.3 KiB
HTML
Raw Normal View History

2011-02-21 08:31:26 -05:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Example</title>
<link rel="stylesheet" href="../css/style.css">
2011-03-07 20:07:26 -05:00
<script type="text/javascript">var root = '../../'</script>
<script type="text/javascript" src="../../src/load.js"></script>
2011-03-04 06:38:38 -05:00
<script type="text/paperscript" canvas="canvas">
var mousePoint = view.center;
2011-03-04 06:38:38 -05:00
var amount = 25;
var colors = ['red', 'white', 'blue', 'white'];
2011-03-04 06:38:38 -05:00
for (var i = 0; i < amount; i++) {
var rect = new Rectangle([0, 0], [25, 25]);
rect.center = mousePoint;
var path = new Path.RoundRectangle(rect, 6);
path.fillColor = colors[i % 4];
var scale = (1 - i / amount) * 20;
path.scale(scale);
new PlacedSymbol(path);
}
function onMouseDown(event) {
mousePoint = event.point;
}
2011-03-04 06:38:38 -05:00
function onMouseDrag(event) {
mousePoint = event.point;
}
var children = project.activeLayer.children;
function onFrame(event) {
2011-03-04 06:38:38 -05:00
for (var i = 0, l = children.length; i < l; i++) {
var item = children[i];
var delta = (mousePoint - item.position) / (i + 5);
item.rotate(Math.sin((event.count + i) / 10) * 7);
2011-03-04 06:38:38 -05:00
if (delta.length > 0.1)
item.translate(delta);
}
}
</script>
</head>
<body>
<canvas id="canvas" resize keepalive="true"></canvas>
</body>