forked from CactusTrees/CactusTrees.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (62 loc) · 2.54 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
<!-- Adapted from https://www.evl.uic.edu/aej/424/ -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CactusTrees: #1545 PacificVis 2016 </title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript">
function UpdatePageSize () {
var container = document.getElementById ("all");
var container2 = document.getElementById ("menu");
var newHeight = container.offsetHeight - container2.offsetHeight ;
var newHeightString = newHeight.toString();
var newWidth = container.offsetWidth;
var newWidthString = newWidth.toString();
document.getElementById('insideID').setAttribute("height", newHeightString+"px;");
document.getElementById('insideID').setAttribute("width", newWidthString+"px;");
document.getElementById('innerID').setAttribute("height", newHeightString+"px;");
document.getElementById('innerID').setAttribute("width", newWidthString+"px;");
}
function ChangeifiOS () {
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false );
if (iOS == true)
{
var anchors = document.getElementsByTagName('a');
for (var i = 0; i < anchors.length; i++) {
anchors[i].target = '_top';
}
}
}
window.onresize = function()
{
UpdatePageSize();
}
</script>
</head>
<body id="all" onload="ChangeifiOS(); UpdatePageSize()" ontouchstart="" onmouseover="">
<div align="center"><font style="font-family:
Helvetica,Arial,sans-serif;" color="#222" size="5">CactusTrees: Visualizing Structure and Connectivityin Hierarchical Datasets</font></div>
<div id="menu">
<nav>
<ul>
<li><a href="main.html" target="InsideFrame">Video</a></li>
<li><a href="layout.html" target="InsideFrame">Cactus Layout</a></li>
<li><a href="#">Demos</a>
<ul>
<li><a href="demo/flare.html" target="InsideFrame">Flare package</a></li>
<li><a href="demo/NGF.html" target="InsideFrame">NGF Pathway</a></li>
<li><a href="demo/" target="InsideFrame">Carnivora</a></li>
<li><a href="demo/MultipleTrees.html" target="InsideFrame">Multiple Trees</a></li>
</ul>
</li>
<li><a href="http://murray.evl.uic.edu:9999/" target="InsideFrame">User Study</a></li>
<li><a href="http://murray.evl.uic.edu:8080/" target="InsideFrame">Raw results</a></li>
</ul>
</nav>
</div>
<div class="innerpage" id="innerID">
<iframe name="InsideFrame" id="insideID" src="main.html" type="text/html" frameBorder="1"></iframe>
</div>
</body>
</html>