paper.js/examples/SVG Export/Gradients.html

53 lines
1.4 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
2014-08-16 13:24:54 -04:00
<meta charset="UTF-8">
<title>Gradients</title>
<link rel="stylesheet" href="../css/style.css">
<!-- IE 9: display inline SVG -->
<meta http-equiv="X-UA-Compatible" content="IE=9">
2014-08-16 13:24:54 -04:00
<script type="text/javascript" src="../../dist/paper-full.js"></script>
<script type="text/paperscript" canvas="canvas">
var stops = [new Color(1, 1, 0, 0), 'red', 'black'];
2014-08-16 13:24:54 -04:00
var radius = view.bounds.width * 0.4,
from = new Point(view.center.x),
to = from + [radius, 0];
2014-08-16 13:24:54 -04:00
var circle = new Path.Circle({
center: from,
radius: radius,
fillColor: {
stops: stops,
radial: true,
origin: from,
destination: to
},
strokeColor: 'black'
});
2014-08-16 13:24:54 -04:00
var from = view.bounds.leftCenter,
to = view.bounds.bottomRight;
2014-08-16 13:24:54 -04:00
var rect = new Path.Rectangle({
from: from,
to: to,
fillColor: {
stops: stops,
radial: false,
origin: from,
destination: to
},
strokeColor: 'black'
});
2014-08-16 13:24:54 -04:00
rect.rotate(45).scale(0.7);
2014-08-16 13:24:54 -04:00
document.body.appendChild(project.exportSVG());
</script>
</head>
2013-02-12 18:08:48 -05:00
<body>
2014-08-16 13:24:54 -04:00
<canvas id="canvas" width="300" height="600"></canvas>
</body>
</html>