forked from yochannah/mi-sbgn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (39 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Complex SBGN viewer</title>
<link rel="stylesheet" href="dist/styles.css" type="text/css">
</head>
<body>
<header>
<h1>MI-SBGN complex viewer</h1>
<h2 id="complextitle"></h2>
</header>
<main>
<aside>
<label>Select a complex
<select id="complexSelector">
<option>EBI-10828997</option>
<option>EBI-9997373</option>
<option>EBI-9008420</option>
<option>EBI-8869931</option>
</select>
</label>
<button type="button" class="download-sbgn">
<svg id="icon-download" viewBox="0 0 32 32">
<title>download</title>
<path d="M23 14l-8 8-8-8h5v-12h6v12zM15 22h-15v8h30v-8h-15zM28 26h-4v-2h4v2z"></path>
</svg>
Export as SBGN-ML</button>
</aside>
<div class="svgcontainer">
<svg id="mi-sbgn" xmlns="http://www.w3.org/2000/svg" height="100" width="100">
</svg>
</div>
</main>
<script>var miSBGNDemo = true;</script>
<script src="dist/mi-sbgn-dependencies.bundle.js"></script>
<script src="dist/mi-sbgn-main.bundle.js"></script>
</body>
</html>