forked from chrbradley/css_curve_editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspline.html
76 lines (58 loc) · 2.08 KB
/
spline.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>CSS Curve Editor</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="stylesheets/base.css">
<link rel="stylesheet" href="stylesheets/skeleton.css">
<link rel="stylesheet" href="stylesheets/layout.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body>
<!-- Primary Page Layout
================================================== -->
<div class="container">
<div class="sixteen columns">
<h1 class="remove-bottom" style="margin-top: 40px">CSS Curve Editor</h1>
<h5>Version 0.0</h5>
<hr />
</div>
<div class="two-third column">
<h4>Move points around to adjust your timing:</h4>
<div id="curveEditor">
</div>
</div>
<div class="one-third column">
<h4>Why CSS Curve Editor?</h4>
<p>Setting keframes in CSS is lame. Do what the pros do and use a curve!</p>
<!-- <div>
<form>
<label for="interpolate">Interpolate:</label>
<select id="interpolate"></select><br>
</form>
</div> -->
</div>
</div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script type="text/javacript" src="js/spline.js"></script>
<!-- End Document
================================================== -->
</body>
</html>