-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
52 lines (42 loc) · 1.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<title>Draw your own SVG-Font</title>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no">
<meta name="author" content="Tobias Mersmann">
<link rel="shortcut icon" type="image/gif" href="../images/favicon.gif">
<!--
- <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
- <script src="https://raw.github.com/jonobr1/two.js/master/build/two.min.js"></script>
- <script src="http://paperjs.org/static/js/paper.js?1367949778000"></script>
-->
<script src="lib/jquery-1.9.1.min.js"></script>
<script src="lib/two.min.js"></script>
<script src="lib/paper.js"></script>
<script src="src/svgData.js"></script>
<script src="src/two.path-reveal.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" href="style.css" type="text/css" media="screen" charset="utf-8">
</head>
<body>
<a href="https://github.com/tmerse/SVG_Font"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<button id="stop">stop</button>
<div id="wrapper">
<div id="controls">
<textarea id ="txtArea" name="Text" rows="8" cols="40">Recycled food is
good for
the environment
and OK for you!</textarea>
<br>
<button id="render">render text</button>
<button id="export">export</button>
<button id="clearContext">clear</button>
<button id="prevChar">←</button>
<select id="chars">chars</select>
<button id="nextChar">→</button>
</div>
<canvas id="paperCvs" width="100" height="100"></canvas>
</div>
<div id="svgContainer">
<div id="placeHolder">
</div>
</div>
</body>
</html>