-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
89 lines (80 loc) · 2.32 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<title>Chart Rendering Test</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<main>
<section>
<article>
<h4>Chart Rendering Test</h4>
<div>
<input id="chart-data" type="text" />
</div>
<div id="chart-area"></div>
</article>
<article>
<h4>SVG Rendering Test</h4>
<div id="create"></div>
<div id="text"></div>
<h4>SVG Animation Frame Test</h4>
<div id="animate"></div>
<div id="frame"></div>
</article>
</section>
<article>
<div id="code-area"></div>
</article>
<aside>
<div class="menu">
<h3>Basic</h3>
<ul class="chapter">
<li>
Element
</li>
<li>
Shape
</li>
</ul>
<h3>Style</h3>
<ul class="chapter">
<li>
Gradient
</li>
</ul>
<h3>Animation</h3>
<ul class="chapter">
<li>
Animate
</li>
</ul>
<h3>Event</h3>
<ul class="chapter">
<li>
Handler
</li>
</ul>
<h3>Chart</h3>
<ul class="chapter">
<li>
Line
</li>
<li>
Bar
</li>
</ul>
</div>
</aside>
</main>
<script type="module" src='./test/index.js'>
</script>
<script type="module" src='./test/chart.js'>
</script>
<script src="./doc.js"></script>
</body>
</html>