-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.html
More file actions
29 lines (29 loc) · 806 Bytes
/
example.html
File metadata and controls
29 lines (29 loc) · 806 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Spline Editor example</title>
<script src="jquery.min.js"></script>
<script src="underscore-min.js"></script> <!-- filter, map etc. -->
<script src="sylvester.js"></script> <!-- matrix inverse -->
<script src="spline-editor.js"></script>
<style>
div {
border:solid 1px black;
margin:20px;
width:320px;
height:256px; // Amiga nostalgia
}
</style>
</head>
<body>
Drag the control points around.
<div id="splineEditorDiv"></div>
<div id="splineEditorDiv2"></div>
<script>
$('#splineEditorDiv, #splineEditorDiv2').splineEditor();
</script>
<!--
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
-->
</body>
</html>