Uh oh!
There was an error while loading. Please reload this page.
forked from CactusTrees/CactusTrees.github.io
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
76 lines (62 loc) · 2.54 KB
/
Copy pathindex.html
File metadata and controls
76 lines (62 loc) · 2.54 KB
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>
<metacharset="UTF-8">
<title>CactusTrees: #1545 PacificVis 2016 </title>
<linkrel="stylesheet" type="text/css" href="style.css" />
<scripttype="text/javascript">
functionUpdatePageSize(){
varcontainer=document.getElementById("all");
varcontainer2=document.getElementById("menu");
varnewHeight=container.offsetHeight-container2.offsetHeight;
varnewHeightString=newHeight.toString();
varnewWidth=container.offsetWidth;
varnewWidthString=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;");
}
functionChangeifiOS(){
variOS=(navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false);
if(iOS==true)
{
varanchors=document.getElementsByTagName('a');
for(vari=0;i<anchors.length;i++){
anchors[i].target='_top';
}
}
}
window.onresize=function()
{
UpdatePageSize();
}
</script>
</head>
<bodyid="all" onload="ChangeifiOS(); UpdatePageSize()" ontouchstart="" onmouseover="">
<divalign="center"><fontstyle="font-family:
Helvetica,Arial,sans-serif;" color="#222" size="5">CactusTrees: Visualizing Structure and Connectivityin Hierarchical Datasets</font></div>
<divid="menu">
<nav>
<ul>
<li><ahref="main.html" target="InsideFrame">Video</a></li>
<li><ahref="layout.html" target="InsideFrame">Cactus Layout</a></li>
<li><ahref="#">Demos</a>
<ul>
<li><ahref="demo/flare.html" target="InsideFrame">Flare package</a></li>
<li><ahref="demo/NGF.html" target="InsideFrame">NGF Pathway</a></li>
<li><ahref="demo/" target="InsideFrame">Carnivora</a></li>
<li><ahref="demo/MultipleTrees.html" target="InsideFrame">Multiple Trees</a></li>
</ul>
</li>
<li><ahref="http://murray.evl.uic.edu:9999/" target="InsideFrame">User Study</a></li>
<li><ahref="http://murray.evl.uic.edu:8080/" target="InsideFrame">Raw results</a></li>
</ul>
</nav>
</div>
<divclass="innerpage" id="innerID">
<iframename="InsideFrame" id="insideID" src="main.html" type="text/html" frameBorder="1"></iframe>
</div>
</body>
</html>