-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
351 lines (312 loc) · 11.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/footer.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet">
<link rel='shortcut icon' type='images/favicon' href="images/favicon.ico" />
<title>TEDxRIT | Home</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/main.js"></script>
<script>
$(function() {
$('a[href*=#]').click(function() {
var target = $(this.hash);
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
});
var speakers = ['.first', '.second', '.third', '.fourth', '.fifth', '.sixth', '.seven'];
for(var i=0; i<=speakers.length; i++){
var num = 0+i;
var popup = '.pop-up-' + num;
$(popup).hide();
}
$('.brandon-dcruz').click(function(){
$('.pop-up-1').show();
$('.wrapper').css('opacity', '0.2');
$('body').addClass('clicked');
});
$(".pop-up-1 span").click(function() {
$(".pop-up-1").hide();
$('.wrapper').css('opacity', '1.0');
$('body').removeClass('clicked');
});
$('.ly-marlow').click(function(){
$('.pop-up-2').show();
$('.wrapper').css('opacity', '0.2');
$('body').addClass('clicked');
});
$(".pop-up-2 span").click(function() {
$(".pop-up-2").hide();
$('.wrapper').css('opacity', '1.0');
$('body').removeClass('clicked');
});
$('.michael-geffert').click(function(){
$('.pop-up-3').show();
$('.wrapper').css('opacity', '0.2');
$('body').addClass('clicked');
});
$(".pop-up-3 span").click(function() {
$(".pop-up-3").hide();
$('.wrapper').css('opacity', '1.0');
$('body').removeClass('clicked');
});
$('.shima-ghaheri').click(function(){
$('.pop-up-4').show();
$('.wrapper').css('opacity', '0.2');
$('body').addClass('clicked');
});
$(".pop-up-4 span").click(function() {
$(".pop-up-4").hide();
$('.wrapper').css('opacity', '1.0');
$('body').removeClass('clicked');
});
$('.skip-flanagan').click(function(){
$('.pop-up-5').show();
$('.wrapper').css('opacity', '0.2');
$('body').addClass('clicked');
});
$(".pop-up-5 span").click(function() {
$(".pop-up-5").hide();
$('.wrapper').css('opacity', '1.0');
$('body').removeClass('clicked');
});
$('.suhail-prasathong').click(function(){
$('.pop-up-6').show();
$('.wrapper').css('opacity', '0.2');
$('body').addClass('clicked');
});
$(".pop-up-6 span").click(function() {
$(".pop-up-6").hide();
$('.wrapper').css('opacity', '1.0');
$('body').removeClass('clicked');
});
$('.gary-stine').click(function(){
$('.pop-up-7').show();
$('.wrapper').css('opacity', '0.2');
$('body').addClass('clicked');
});
$(".pop-up-7 span").click(function() {
$(".pop-up-7").hide();
$('.wrapper').css('opacity', '1.0');
$('body').removeClass('clicked');
});
});
</script>
<!--
<script>
var eventDate = new Date(2017, 1, 4, 12, 0, 0, 0).getTime();
setInterval(function() {
var curTime = new Date().getTime();
var timeLeft = eventDate - curTime;
var dCon = 1000*60*60*24;
var hCon = 1000*60*60;
var mCon = 1000*60;
var sCon = 1000;
var days = Math.floor(timeLeft/dCon);
var hours = Math.floor((timeLeft % dCon) / hCon);
var minutes = Math.floor((timeLeft % hCon) / mCon);
var seconds = Math.floor((timeLeft % mCon) / sCon);
document.getElementById("countdown").innerHTML = days + " days "
+ hours + " hours " + minutes + " minutes " + seconds + " seconds";
}, 1000);
</script>
-->
</head>
<body>
<!--Pop Up Details # 1-->
<div class="pop-up-1">
<span>x</span>
<div class="pop-up-text">
<div class="flex-container">
<h1>Brandon Dcruz</h1>
<img class="img-1" src="images/speakers/BrandonDcruz.jpg" alt="image one" />
<h1>Cocaine Train Tracks: A Kid, Music, and Antidepressants</h1>
<h2>A personal story about depression, creativity, identity, and growing up.</h2>
</div>
</div>
</div>
<!--Pop Up Details # 2-->
<div class="pop-up-2">
<span>x</span>
<div class="pop-up-text">
<div class="flex-container">
<h1>LY Marlow</h1>
<img class="img-2" src="images/speakers/LYMarlow.jpg" alt="image two" />
<h1>Why You Should Have the Courage to Embrace Your Passion</h1>
<h2>If given an opportunity to live with passion and purpose, despite your fears and risks, will YOU do it?</h2>
</div>
</div>
</div>
<!--Pop Up Details # 3-->
<div class="pop-up-3">
<span>x</span>
<div class="pop-up-text">
<div class="flex-container">
<h1>Michael Geffert</h1>
<img class="img-3" src="images/speakers/MichaelGeffert.jpg" alt="image three" />
<h1>How Do Magicians Fool Us?</h1>
<h2>The simple secrets and methods magicians use to trick us into believing what seems to be impossible.</h2>
</div>
</div>
</div>
<!--Pop Up Details # 4-->
<div class="pop-up-4">
<span>x</span>
<div class="pop-up-text">
<div class="flex-container">
<h1>Shima Ghaheri</h1>
<img src="images/speakers/ShimaGhaheri.JPG" alt="image four" />
<h1>Design Vs. War</h1>
<h2>Protecting war-traumatized children by designing modular system of games and toys</h2>
</div>
</div>
</div>
<!--Pop Up Details # 5-->
<div class="pop-up-5">
<span>x</span>
<div class="pop-up-text">
<div class="flex-container">
<h1>Skip Flanagan</h1>
<img src="images/speakers/SkipFlanagan.jpg" alt="image five" />
<h1>Go Deaf: Turning A Deaf Ear to the Naysayers</h1>
<h2>A deeper look into the phrase 'going deaf', and how it is applicable to all aspects of life...and how to apply it to yourself.</h2>
</div>
</div>
</div>
<!--Pop Up Details # 6-->
<div class="pop-up-6">
<span>x</span>
<div class="pop-up-text">
<div class="flex-container">
<h1>Suhail Prasathong</h1>
<img src="images/speakers/SuhailPrasathong.png" alt="image five" />
<h1> The Privileged Immigrant</h1>
<h2>How a heartbreaking story about immigration unearthed the concept of a privileged immigrant.</h2>
</div>
</div>
</div>
<!--Pop Up Details # 7-->
<div class="pop-up-7">
<span>x</span>
<div class="pop-up-text">
<div class="flex-container">
<h1>Gary Stine</h1>
<img src="images/speakers/garystine.png" alt="image seven" />
<h1>Welcome to We</h1>
<h2>Why we hide in plain site when we speak in public, and how we can move beyond hiding toward a more useful model.</h2>
</div>
</div>
</div>
<!--The first section of the Home page. Houses the main site navigation.-->
<div class="wrapper">
<div class="hero">
<div class="overlay"></div>
<div class="hero-content">
<div class="nav">
<a href="index.html" class="logo"></a>
<div class="links">
<a href="about.html" class="link">ABOUT</a>
<a href="speakers.html" class="link">SPEAKERS</a>
<a href="sponsor.html" class="link">SPONSORS</a>
<a href="team.html" class="link">TEDxRIT 2017</a>
<a href="#sectionCont" class="link">CONTACT</a>
</div>
</div>
<div class="hero-center">
<div class="hero-title">Tabula Rasa</div>
<!--<div class="countdown-title" id="countdown"></div>-->
<a href="#sectionDown" class="button">LEARN MORE</a>
</div>
</div>
</div>
<!--The second section of the Home page. Houses information for the event and a link to the About page.-->
<div class="page-wrapper" id="sectionDown">
<div class="about-container">
<div class="about-left">
<div class="date">2.24.18</div>
<div class="title right-align">Ingle Auditorium</div>
</div>
<div class="about-right">
<div class="text">Rooted in Latin, Tabula Rasa translates to “clean slate”.<br /><br />With the hope that our audience comes to TEDxRIT 2018 with an open mind, our goal is to challenge the preconceived notions some may carry with them and inspire them to greater heights.</div>
<a href="about.html" class="button main">FULL STORY</a>
</div>
</div>
</div>
<!--The third section of the Home page. Houses the information and links to apply for a Speaker or Attendee role.-->
<div class="gray" id="sectionApp">
<div class="page-wrapper">
<div class="title space">Speakers</div>
<div class="speaker-grid">
<div class="speaker brandon-dcruz"></div>
<div class="speaker ly-marlow"></div>
<div class="speaker michael-geffert"></div>
<div class="speaker shima-ghaheri"></div>
<div class="speaker skip-flanagan"></div>
<div class="speaker suhail-prasathong"></div>
<div class="speaker gary-stine"></div>
</div>
</div>
</div>
<!--The fourth section of the Home page. Houses images and links to each of the sub-committees of TEDxRIT-->
<div class="page-wrapper">
<div class="title space">TEDxRIT 2017</div>
<div class="grid">
<div class="row">
<div class="left">
<div class="img one"></div>
</div>
<div class="right">
<div class="img two"></div>
</div>
</div>
<div class="row">
<div class="left">
<div class="img three"></div>
</div>
<div class="right">
<div class="img four"></div>
</div>
</div>
<div class="row">
<div class="left">
<div class="img five"></div>
</div>
<div class="right">
<div class="img six"></div>
</div>
</div>
<div class="row">
<div class="left">
<div class="img seven"></div>
</div>
<div class="right">
</div>
</div>
</div>
</div>
<!--The fifth and final section of the Home page. Houses links to email the club as well as links to social media accounts.-->
<div class="footer" id="sectionCont">
<div class="top">
<div class="footer-title">Questions? Contact Us</div>
<a href="mailto:[email protected]" class="footer-button">EMAIL</a>
</div>
<div class="bottom">
<div class="container">
<div class="footer-left">This independent TEDx event is operated under license from TED.</div>
<div class="footer-right">
<a href="https://www.facebook.com/TEDxRIT/?hc_ref=SEARCH&fref=nf" target="_blank" class="social fb"></a>
<a href="https://www.instagram.com/tedxrit/" target="_blank" class="social insta"></a>
<a href="https://twitter.com/TEDXRIT" target="_blank" class="social twitter"></a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>