-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (77 loc) · 3.19 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
<!DOCTYPE html>
<html>
<head>
<title>Geotech Lab</title>
<style>
.HorizontalNavBar
{
position:fixed;
left:0;
top:0;
width:17%;
height:100%;
border:2px solid black;
padding:5px;
overflow:scroll;
}
.main{
position:fixed;
left:18%;
top:0;
width:83%;
height:100%;
padding-left:50px;
overflow:auto;
}
p{
background-color:transparent;
border:none;
cursor:pointer;
}
p:hover
{
background-color:#FFF8DC;
color:orange;
font-weight:bold;
}
</style>
<script>
function displaySimulation(exp)
{
document.getElementById("sim").style.display="block";
document.getElementById("sim").src=exp;
}
</script>
</head>
<body onload="alerting()">
<div class="HorizontalNavBar">
<span>
<h3>Experiment list</h3>
<!-- <ol>
<li><p id="coreCutter/index.html" onclick="displaySimulation(id)">Dry density by core cutter method</p></li>
<li><p id="sandReplacementMethod/index.html" onclick="displaySimulation(id)">Dry density by sand replacement method</p></li>
<li><p id="shrinkageLimitTest/index.html" onclick="displaySimulation(id)">Shrinkage limit test</p></li>
<li><p id="stdProctor/index.html" onclick="displaySimulation(id)">Standard Proctor test</p></li>
<li><p id="liquidPlastic/index.html" onclick="displaySimulation(id)">Liquid limit and plastic limit</p></li>
<li><p id="vaneShearTest/index.html" onclick="displaySimulation(id)">Vane Shear Test</p></li>
<li><p id="consolidation/index.html" onclick="displaySimulation(id)">Consolidation</p></li>
<li><p id="constantHeadPermeability/index.html" onclick="displaySimulation(id)">constant Head Permeability</p></li>
<li><p id="UnconfinedCompressionTest/index.html" onclick="displaySimulation(id)">Unconfined Compression Test/</p></li>
</ol> -->
<ol>
<li><p id="updatedExperiments/exp-core-cutter-method-nitk/experiment/simulation/index.html" onclick="displaySimulation(id)">Dry density by core cutter method</p></li>
<li><p id="updatedExperiments/sandReplacementMethod/index.html" onclick="displaySimulation(id)">Dry density by sand replacement method</p></li>
<li><p id="updatedExperiments/shrinkageLimitTest/index.html" onclick="displaySimulation(id)">Shrinkage limit test</p></li>
<li><p id="updatedExperiments/proctor/index.html" onclick="displaySimulation(id)">Standard Proctor test</p></li>
<li><p id="updatedExperiments/index.html" onclick="displaySimulation(id)">Liquid limit and plastic limit</p></li>
<li><p id="updatedExperiments/vane/index.html" onclick="displaySimulation(id)">Vane Shear Test</p></li>
<li><p id="updatedExperiments/consolidation/index.html" onclick="displaySimulation(id)">Consolidation</p></li>
<li><p id="updatedExperiments/constantHeadPermeability//index.html" onclick="displaySimulation(id)">constant Head Permeability</p></li>
<li><p id="updatedExperiments/unconfined/index.html" onclick="displaySimulation(id)">Unconfined Compression Test/</p></li>
</ol>
</div>
<div class="main" style="background-color:#FFFFFF;">
<iframe id="sim" style="border:none; position:absolute; top:0px; width:980px; height:650px; display:none;">Click on the experiment name in the navigation bar to view the silmulation</iframe>
</div>
</body
</html>