-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.11 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.11 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Panda</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- <link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'> -->
<link rel="stylesheet" href="panda.css">
</head>
<body>
<section id="fx-controls">
</section>
<section id="stagePanel" data-zoom="100">
<canvas id="stage"></canvas>
</section>
<script src="panda.js"></script>
<div id="templates">
<div data-template="fx-main" class="fx-main">
<div class="fx-name">
#name
</div>
<div class="fx-controls">
</div>
</div>
<div data-template="fx-control-row" class="fx-control-row">
<div class="fx-control-label">
#label
</div>
</div>
<div data-template="fx-control-section" class="fx-control-section">
<div class="fx-control-section-title">
#title
</div>
<div class="fx-control-section-content">
</div>
</div>
</div>
</body>
</html>