-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
62 lines (53 loc) · 1.11 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>skeleton</title>
<link href="main.css" rel="stylesheet">
</head>
<body>
<!--topbar-->
<div id="topbar">topbar</div>
<!--col-based studio-->
<div id="studio">
<!--left nav bar-->
<div id="l-nav-bar">
<ul>
<li>file</li>
<li>Geometry</li>
<li>PDE</li>
<li>NN</li>
</ul>
</div>
<!--打开默认是explorer + 说明-->
<!--选择完project后,默认展开editor+graph-->
<!--除此外的组合:PDE builder+graph; NN+graph; 或者单独graph+info tab-->
<!--explorer+spec-->
<!-- <div id="explorer"></div>
<div class="v-handler"></div>
<div id="spec"></div> -->
<!--editor+equation+nn-->
<!--editor-->
<div id="editor">
<!--pad-->
<div id="e-pad"></div>
<div class="h-handler"></div>
<!--console-->
<div id="e-console"></div>
</div>
<!--equation-->
<div id="equation"></div>
<!--nn-->
<div id="nn"></div>
<!--graph-->
<div class="v-handler"></div>
<div id="graph">
<p>
图像
</p>
</div>
</div>
<!--bottom info bar-->
<div id="bt-info-bar"></div>
</body>
</html>