-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (69 loc) · 2.72 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
<!DOCTYPE >
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-E6Z98FT147"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-E6Z98FT147');
</script>
<title>cytoscape.js-css-variables demo</title>
<meta property="og:title" content="cytoscape.js-css-variables demo" />
<meta property="og:type" content="website" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1"
/>
<!-- Color Picker is not a dependency, just here for the demo -->
<script type="module" src="https://unpkg.com/vanilla-colorful/rgb-string-color-picker?module"></script>
<!-- Import base cytoscape js package -->
<script src="https://unpkg.com/cytoscape/dist/cytoscape.min.js"></script>
<!-- Import CSS Vars package -->
<!-- <script src="./dist/cytoscape-css-variables.js"></script> -->
<script src="https://unpkg.com/cytoscape-css-variables/dist/cytoscape-css-variables.js"></script>
<link href="./demo.css" rel="stylesheet">
</head>
<body>
<header id="header">
<a href="https://github.com/lukethacoder/cytoscape.js-css-variables">
<h1>cytoscape.js-css-vars</h1>
</a>
<rgb-string-color-picker color="rgba(255, 255, 255, 1)"></rgb-string-color-picker>
<ul class="radio--opts">
<li>
<input type="radio" id="primary" name="css-var-type" value="primary"
checked>
<label for="primary">primary</label>
</li>
<li>
<input type="radio" id="secondary" name="css-var-type" value="secondary">
<label for="secondary">secondary</label>
</li>
<li>
<input type="radio" id="tertiary" name="css-var-type" value="tertiary">
<label for="tertiary">tertiary</label>
</li>
</ul>
<input id="size--slider" type="range" min="10" max="150" value="30">
<p style="color: var(--theme-tertiary);">
Use the above color picker and theme selector to change the css variables. Or use the range slider to adjust the size of the nodes.
</p>
<ul class="external--links">
<li>
<a href="https://github.com/lukethacoder/cytoscape.js-css-variables">
Github
</a>
</li>
<li>
<a href="https://github.com/lukethacoder/cytoscape.js-css-variables">
npm
</a>
</li>
</ul>
</header>
<div id="cy"></div>
<script src="./demo.js"></script>
</body>
</html>