-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsite.html
393 lines (362 loc) · 18.1 KB
/
site.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
<!doctype html>
<html lang="en">
<head>
<title>HackXR</title>
<link rel="shortcut icon" type="image/x-icon" href="public/img/XR_favicon.png" />
<link rel="stylesheet" type="text/css" href="public/css/style.css">
<link rel="stylesheet" type="text/css" href="public/css/row_col_container.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" href="public/js/site.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<!-- LANDING SECTION -->
<div class="landing" id="landing">
<div class="landing_content">
<div class="row present">
<div class="col s12 m7">
<object class="svg presented_by" type="image/svg+xml" data="public/img/svg/XR_presentedby.svg">Your browser does not support SVGs</object>
</div>
</div>
<div class="row">
<div class="col s12 m8 offset-m2">
<div class="svg_container">
<object class="svg xr" type="image/svg+xml" data="public/img/svg/XR_logo_all.svg">Your browser does not support SVGs</object>
</div>
</div>
</div>
<div class="row text-center">
<div class="col s12 m8 offset-m2">
<div class = "xr-event-description">
<h1>UCSD's First Ever VR / AR Hackathon</h1>
<h1>Feb 23-25, 2018 | Computer Science Building</h1>
</div>
<div class="col s12 m6 l4 offset-l2">
<div class="sign-up-button">
<button id="register"><a target="_blank" href="https://hackxr.typeform.com/to/JNmhgg"><h1>Register</h1></a></button>
</div>
</div>
<div class="col s12 m6 l4">
<div class="sign-up-button">
<button id="facebook"><a target="_blank" href="https://www.facebook.com/events/179810302622885/"><h1>Facebook Event</h1></a></button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- NAVBAR -->
<div class="body_container">
<div class="navbar">
<div class="navbar_content">
<div class="row">
<div class="col s12 m10 offset-m1">
<a href="#landing">
<div class="col s2 navlink">
<!-- <h4 class="text-left navbar_name">HackXR</h4> -->
<h4 class="text-left navbar_name">H</h4>
<h4 class="text-left navbar_name">a</h4>
<h4 class="text-left navbar_name">c</h4>
<h4 class="text-left navbar_name">k</h4>
<h4 class="text-left navbar_name thick">X</h4>
<h4 class="text-left navbar_name thick">R</h4>
</div>
</a>
<div class="col s2">
<div class="nav_container">
<h4 class="text-right"></h4>
</div>
</div>
<div class="col s2 navlink">
<div class="nav_container">
<a href="#schedule"><h4 class="text-right">Schedule</h4></a>
<div class="effect"></div>
</div>
</div>
<div class="col s2 navlink">
<div class="nav_container">
<a href="#links"><h4 class="text-right">Links</h4></a>
<div class="effect"></div>
</div>
</div>
<div class="col s2 navlink">
<div class="nav_container">
<a href="#faq"><h4 class="text-right">FAQ</h4></a>
<div class="effect"></div>
</div>
</div>
<div class="col s2 navlink">
<div class="nav_container">
<a href="#sponsor"><h4 class="text-right">Sponsors</h4></a>
<div class="effect"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CONTENT -->
<div class="body_content">
<div class="row section schedule" id="schedule">
<div class="col s12 m10 offset-m1">
<h2 id="title">Schedule</h2>
<p><em class="disclaimer">Tentative. Subject to change.</em></p><br>
<div class="col s12 l4">
<div class="card_container">
<div class="card">
<div class="card_content">
<h3 id="day">Friday, February 23rd</h3>
<ul class="list">
<li class="schedule_element">
<span class="schedule_event">Check in + Dinner</span>
<span class="schedule_time">7:00 PM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">VR Design Workshop</span>
<span class="schedule_time">9:00-9:30 PM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Pitchfest</span>
<span class="schedule_time">9:30-10:00 PM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Start Hacking</span>
<span class="schedule_time">10:00 PM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Unity Workshop</span>
<span class="schedule_time">10:00-12:00 PM</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col s12 l4">
<div class="card_container">
<div class="card">
<div class="card_content">
<h3 id="day">Saturday, February 24th</h3>
<ul class="list">
<li class="schedule_element">
<span class="schedule_event">Breakfast</span>
<span class="schedule_time">9:00 AM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Lunch</span>
<span class="schedule_time">1:00 PM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Project Pitch Workshop</span>
<span class="schedule_time">6:00-7:00 PM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Dinner</span>
<span class="schedule_time">7:00 PM</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col s12 l4">
<div class="card_container">
<div class="card">
<div class="card_content">
<h3 id="day">Sunday, February 25th</h3>
<ul class="list">
<li class="schedule_element">
<span class="schedule_event">Breakfast</span>
<span class="schedule_time">8:00 AM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Stop Hacking</span>
<span class="schedule_time">10:00 AM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Showcase + Judging</span>
<span class="schedule_time">10:00 AM-12:00 PM</span>
</li>
<li class="schedule_element">
<span class="schedule_event">Award Ceremony</span>
<span class="schedule_time">12:00-1:00 PM</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row section links" id="links">
<div class="col s12 m10 offset-m1">
<h2 id="title">Links</h2>
<div class="col s12 m6 l4 offset-l2">
<div class="sign-up-button">
<button id="devpost"><a target="_blank" href="https://hackxr.devpost.com/"><h1>Devpost</h1></a></button>
</div>
</div>
<div class="col s12 m6 l4">
<div class="sign-up-button">
<button id="slack"><a target="_blank" href="https://hackxr2018.slack.com/join/signup"><h1>Slack</h1></a></button>
</div>
</div>
</div>
</div>
<div class="row section faq" id="faq">
<div class = "col s12 m10 offset-m1">
<h2 id="title">FAQ</h2>
<div class="col s12 m6">
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>What is XR?</h3>
<p class="faq-answer">
XR stands for E<b>x</b>tended <b>R</b>eality which refers to the spectrum of virtual environments ranging from Virtual Reality, to Mixed Reality, to Augmented Reality.
</p>
</div>
</div>
</div>
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>What is AR?</h3>
<p class="faq-answer">
<em class="italic">80% Real World, 20% Virtual</em><br>
Augmented Reality (AR) applications overlay computer graphics on the real world. Has a lot of potential for practical applications!<br>
We’re providing a <a class="link" href="https://www.microsoft.com/en-us/hololens" target="_blank">Microsoft Hololens</a> and mentors to help get <a class="link" href="https://developers.google.com/ar/" target="_blank">ARCore</a> and <a class="link" href="https://developer.apple.com/arkit/" target="_blank">ARKit</a> working on your phones.
</p>
</div>
</div>
</div>
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>What is a hackathon?</h3>
<p class="faq-answer">
Hackathons are coding marathons that last anywhere from 12 to 36 hours. During a Hackathon, students work with a team to create an innovative project completely from scratch, with no prior work allowed. Participants are provided with food, space, mentorship, and the equipment needed to complete their projects. At the end, all attendees will present their work, and judges will award prizes to the top projects.
</p>
</div>
</div>
</div>
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>What should I bring?</h3>
<p class="faq-answer">
Participants should bring a valid student ID, any toiletries needed during the hackathon, a sleeping bag or pillow for rest, and an open mind! We recommend students bring their own laptops, though VR ready computers will be provided during the event. Students will also be allowed to leave and return throughout the event for rest or any forgotten items.
</p>
</div>
</div>
</div>
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>What if I am a beginner?</h3>
<p class="faq-answer">
Don’t worry! We’ll be hosting workshops at the event where we’ll be going over everything you need to get started. Experienced VR and AR mentors will be present 24/7 to answer your questions.<br>
If you want to get a headstart, feel free to check out our <a class="link" href="http://bit.ly/ucsdvrunityguide" target="_blank">list of tutorials on Unity</a>, our preferred game engine. We also have <a class="link" href="http://bit.ly/ucsdvrworkshops" target="_blank">workshop slides</a> where we discuss VR specific design.
</p>
</div>
</div>
</div>
<!-- <div class="card_container">
<div class="card">
<div class="card_content">
<h3>Why hack?</h3>
<p class="faq-answer">It's fun</p>
</div>
</div>
</div> -->
</div>
<div class="col s12 m6">
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>What is VR?</h3>
<p class="faq-answer">
<em class="italic">0% Real World, 100% Virtual</em><br>
Virtual Reality (VR) applications place the user in a virtual world where they are not able to see the real world. At the bare minimum, their head rotations change their point of view. Higher end devices have spatial tracking, allowing movement and 6 DOF controllers allowing for natural interaction. Great for interactive experiences!<br>
We’re providing <a class="link" href="https://www.vive.com/us/" target="_blank">HTC Vives</a>, <a class="link" href="https://www.oculus.com/rift/" target="_blank">Oculus Rifts</a>, <a class="link" href="https://www.microsoft.com/en-us/store/collections/vrandmixedrealityheadsets" target="_blank">Windows MR Headsets</a>, <a class="link" href="https://www.oculus.com/gear-vr/" target="_blank">Samsung Gear VRs</a>, <a class="link" href="https://vr.google.com/daydream/" target="_blank">Google Daydreams</a>, and <a class="link" href="https://vr.google.com/cardboard/" target="_blank">Google Cardboards</a>. Our mentors have created dozens of experiences for almost all of these platforms.
</p>
</div>
</div>
</div>
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>What is MR?</h3>
<p class="faq-answer">
<em class="italic">50% Real World, 50% Virtual</em><br>
Mixed Reality (MR) is a process where real camera footage of a person playing a VR game is overlaid with the game visuals, giving a third person perspective of the game. <a class="link" href="https://www.youtube.com/watch?v=nx-esx_KbJE" target="_blank">See this video for an example!</a><br>
We’re setting up an MR booth with a Vive!
</p>
</div>
</div>
</div>
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>Who can attend?</h3>
<p class="faq-answer">
Any college student can register for this Hackathon! Teams may consist of up to 5 members, and we’ll be having a mixer event at the start of the event to help hackers find teammates. Though students from other universities are welcome and encouraged to register, we are unable to provide travel reimbursement at this time.
</p>
</div>
</div>
</div>
<div class="card_container">
<div class="card">
<div class="card_content">
<h3>What will be provided?</h3>
<p class="faq-answer">
We’ll be providing all necessary XR hardware, space, computers, and computer peripherals. Food will also be provided at regular intervals throughout the event, though students will need to eat outside of the VR Lab. Additionally, there will be VR workshops and mentors during the Hackathon.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row section sponsor" id="sponsor">
<div class = "col s12 m10 offset-m1">
<h2 id="title">Sponsors</h2>
<h3 class="text-center">Become a sponsor. <a class="link" href="mailto:virtualreality@ucsd.edu">Email us</a></h3>
<div class="col s4 offset-s2">
<img src="public/img/sponsors/CSELogo_RGBh.png">
</div>
<div class="col s4">
<img src="public/img/sponsors/NewLibraryLogo-2767.png">
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footer_content">
<div class="row section">
<div class="col s12 m10 offset-m1">
<div class="text-left">
<div class="col s2 l1">
<a href="https://www.facebook.com/ucsdvr/" class="fa fa-facebook-square fa-2x" target="_blank"></a>
</div>
<div class="col s2 l1">
<a href="mailto:virtualreality@ucsd.edu" class="fa fa-envelope fa-2x"></a>
</div>
<div class="col s2 l1">
<a href="https://hackxr2018.slack.com/join/signup" class="fa fa-slack fa-2x" aria-hidden="true" target="_blank"></a>
</div>
<div class="col s2 l1">
<a href="https://hackxr.devpost.com/" class="fa fa-code fa-2x" aria-hidden="true" target="_blank"></a>
</div>
<div class="col s4 l3 offset-l5">
<a href="http://www.vrclub.ucsd.edu" target="_blank">
<object class="vr_logo" type="image/svg+xml" data="public/img/svg/VR_logowname.svg" href="vrclub.ucsd.edu" target="_blank">Your browser does not support SVGs</object>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>