forked from PathwayCommons/cytoscape-sbgn-stylesheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
46 lines (33 loc) · 756 Bytes
/
demo.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
<!DOCTYPE html>
<html>
<head>
<title>SBGN stylesheet demo</title>
<script src="https://unpkg.com/[email protected]/fetch.js"></script>
<script src="https://unpkg.com/cytoscape/dist/cytoscape.min.js"></script>
<style>
body {
font-family: helvetica neue, helvetica, liberation sans, arial, sans-serif;
font-size: 14px;
}
#cy {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 999;
}
h1 {
opacity: 0.5;
font-size: 1em;
font-weight: bold;
}
</style>
</head>
<body>
<h1>cytoscape-sbgn-stylesheet demo</h1>
<div id="cy">
</div>
<script src="build/demo.js"></script>
</body>
</html>