paper.js/examples/SVG Import/Text Testing.html

19 lines
720 B
HTML
Raw Normal View History

2012-09-30 17:51:50 -04:00
<!DOCTYPE html>
<html>
<head>
2013-06-02 16:41:10 -04:00
<meta charset="UTF-8">
2012-09-30 17:51:50 -04:00
<title>Text Testing</title>
<link rel="stylesheet" href="../css/style.css">
<script type="text/javascript" src="../../dist/paper.js"></script>
<script type="text/paperscript" canvas="canvas">
2013-04-23 10:19:08 -04:00
project.importSVG(document.getElementById('svg'));
2012-09-30 17:51:50 -04:00
</script>
</head>
2012-11-02 20:44:57 -04:00
<body>
2013-02-26 02:49:56 -05:00
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="500" height="500" id="svg">
2012-09-30 17:51:50 -04:00
<text x="20" y="15" stroke="green" fill="green" style="font:15px arial;" id="text">Plain SVG Text</text>
2012-11-03 22:25:37 -04:00
<text x="20" y="50" fill="red" transform="rotate(30 20,40)" style="font:12px helvetica;">Rotated SVG Text</text>
2012-09-30 17:51:50 -04:00
</svg>
2013-02-26 02:49:56 -05:00
<canvas id="canvas" width="500" height="500"></canvas>
2012-09-30 17:51:50 -04:00
</body>
</html>