-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
127 lines (115 loc) · 4.85 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Large Hadron Collider / HEP Panorama</title>
<meta name="description" content="CERN LHC / HEP Panoramas Webpage - A-Frame"/>
<!--For demo/debug, a redirect link to the ALTAS VR page-->
<!-- <meta http-equiv='refresh' content='0;atlas.html'> -->
<!-- favicon -->
<!-- <link rel="icon" type="image/png" href="logo/cern_logo.png"/> -->
<!-- <link rel="shortcut icon" href="/favicon.ico"> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="css/main.css">
<script src="components/main-page.js"></script>
</head>
<body>
<div id="splash">
<div class="loading"></div>
</div>
<div class="scene">
<table>
<tr bgcolor="#2d5399">
<td>
<img src="logo/cms_logo.png" class="header"/>
</td>
<td>
<!-- <img src="logo/cern_logo.png" class="header"/> -->
<!-- <img src="logo/hsf_logo_whitebkg.png" class="header"/> -->
LHC 360 Panoramas
</td>
<td>
<img src="logo/atlas_logo_square.png" class="header"/>
</td>
</tr>
</table>
<h1 class="page_title">
Large Hadron Collider 360degrees Panoramas
</h1>
<p>
Come take a look into the place where particle magic takes place.
Explore and discover the experiments and the facilities
that push physics to a new frontier.
</p>
<div class="div-grid">
<div class="row">
<div class="column">
<div class="container-button">
<a href="cms.html">
<img src="display_images/cms_detector_front_M.jpg">
</a>
<button onclick="location.href='cms.html'" type="button" class="btn">CMS Experiment</button>
</div>
</div>
<div class="column">
<div class="container-button">
<a href="atlas.html">
<img src="display_images/atlas_detector_front_M.jpg">
</a>
<button onclick="location.href='atlas.html'" type="button" class="btn">ATLAS Experiment</button>
</div>
</div>
</div>
</div>
<!--CMS Hyperlink-->
<!-- <div class="container">
<div>
<div onclick="transitionToPage('cms.html')">
<div id="left">
<img src="display_images/cms_display_1.jpeg" class="image"/>
</div>
<div id="middle">
<img src="logo/cms_logo.png" alt="CMS" class="image"/>
</div>
<div id="right">
<img src="display_images/cms_display_2.jpg" class="image"/>
</div>
</div>
</div>
<div class="overlay">CMS Project Panorama</div>
</div> -->
<!--ATLAS Hyperlink-->
<!-- <div class="container">
<div>
<div onclick="transitionToPage('atlas.html')">
<div id="left">
<img src="display_images/atlas_display_1.jpg" class="image"/>
</div>
<div id="middle">
<img src="logo/atlas_logo.jpg" alt="Atlas" class="image"/>
</div>
<div id="right">
<img src="display_images/atlas_display_2.jpeg" class="image"/>
</div>
</div>
</div>
<div class="overlay">ATLAS Project Panorama</div>
</div> -->
<table>
<tr bgcolor="#2d5399">
<td>
<div style="display: inline-block; text-align: left;">
Source code available on <a href="https://github.com/HEPPanoramic/lhc-panoramas">Github</a> <br />
</div>
</td>
<td>
Kindly hosted by <a href="https://home.cern">CERN</a> <br />
</td>
<td>
Made with <a href="https://aframe.io/">A-Frame</a> <br />
</td>
</tr>
</table>
</div>
</body>
</html>