-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
533 lines (473 loc) · 18.5 KB
/
index.html
File metadata and controls
533 lines (473 loc) · 18.5 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
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
<!DOCTYPE html>
<html>
<head>
<!-- Basic -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Site Metas -->
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>RISE</title>
<!-- slider stylesheet -->
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" />
<!-- bootstrap core css -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<!-- font awesome style -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" />
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet" />
<!-- responsive style -->
<link href="css/responsive.css" rel="stylesheet" />
<link rel="apple-touch-icon" sizes="180x180" href="images/rise-logo.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/rise-logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/rise-logo.png">
<link rel="shortcut icon" href="images/rise-logo.png">
<style>
.image-carousel {
position: relative;
width: 100%;
height: 625px;
overflow: hidden;
background: #000;
}
.carousel-slides {
display: flex;
transition: transform 0.8s ease-in-out;
height: 100%;
}
.carousel-slide {
min-width: 100%;
height: 100%;
position: relative;
}
.carousel-slide img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 1;
}
.carousel-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0);
color: white;
border: none;
font-size: 30px;
padding: 15px 20px;
cursor: pointer;
z-index: 10;
transition: background 0.3s;
}
.carousel-arrow:hover {
background: rgba(255, 255, 255, 0.5);
}
.carousel-arrow.prev {
left: 20px;
}
.carousel-arrow.next {
right: 20px;
}
@media (max-width: 768px) {
.image-carousel {
height: 350px;
}
.carousel-arrow {
font-size: 20px;
padding: 10px 15px;
}
}
.feature_section {
padding-top: 60px;
padding-bottom: 0px;
}
.carousel-progress {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 6px;
z-index: 10;
}
.progress-segment {
width: 40px;
height: 4px;
background: rgba(255, 255, 255, 0.4);
border-radius: 2px;
overflow: hidden;
cursor: pointer;
}
.progress-fill {
height: 100%;
width: 0%;
background: white;
border-radius: 2px;
}
.progress-fill.animating {
width: 100%;
transition: width 5s linear;
}
.progress-fill.done {
width: 100%;
transition: none;
}
</style>
</head>
<body>
<div class="hero_area">
<header class="header_section">
<div class="header_bottom">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg custom_nav-container">
<a class="navbar-brand" href="index.html">
<span>RISE</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class=""> </span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ourteam.html">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="learn.html">Learn</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact-us">Contact Us</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
</div>
<!-- Image Carousel -->
<div class="image-carousel">
<div class="carousel-slides" id="carouselTrack">
<div class="carousel-slide"><img src="images/home1.JPG" alt="RISE Robotics Program"></div>
<div class="carousel-slide"><img src="images/home2.JPG" alt="RISE Students Learning"></div>
<div class="carousel-slide"><img src="images/home3.JPG" alt="RISE Community Engagement"></div>
<div class="carousel-slide"><img src="images/home4.JPG" alt="RISE Classroom Activity"></div>
<div class="carousel-slide"><img src="images/home5.JPG" alt="RISE Team Collaboration"></div>
<div class="carousel-slide"><img src="images/home6.JPG" alt="RISE Robotics Training"></div>
</div>
<button class="carousel-arrow prev" onclick="moveSlide(-1)">❮</button>
<button class="carousel-arrow next" onclick="moveSlide(1)">❯</button>
<div class="carousel-progress">
<div class="progress-segment" onclick="currentSlide(0)">
<div class="progress-fill" id="prog-0"></div>
</div>
<div class="progress-segment" onclick="currentSlide(1)">
<div class="progress-fill" id="prog-1"></div>
</div>
<div class="progress-segment" onclick="currentSlide(2)">
<div class="progress-fill" id="prog-2"></div>
</div>
<div class="progress-segment" onclick="currentSlide(3)">
<div class="progress-fill" id="prog-3"></div>
</div>
<div class="progress-segment" onclick="currentSlide(4)">
<div class="progress-fill" id="prog-4"></div>
</div>
<div class="progress-segment" onclick="currentSlide(5)">
<div class="progress-fill" id="prog-5"></div>
</div>
</div>
</div>
<!-- Stats section -->
<section class="feature_section">
<div class="container">
<div class="feature_container" style="display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;">
<div class="box"
style="text-align: center; padding: 30px; background: #fff; border-radius: 12px; width: 220px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
<h2 class="count" data-target="6000" style="font-size: 48px; font-weight: 700; margin: 0; color: #000;">0</h2>
<h5 class="name" style="margin-top: 15px; color: #000;">Raised</h5>
</div>
<div class="box"
style="text-align: center; padding: 30px; background: #fff; border-radius: 12px; width: 220px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
<h2 class="count" data-target="90" style="font-size: 48px; font-weight: 700; margin: 0; color: #000;">0</h2>
<h5 class="name" style="margin-top: 15px; color: #000;">Students</h5>
</div>
<div class="box"
style="text-align: center; padding: 30px; background: #fff; border-radius: 12px; width: 220px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
<h2 class="count" data-target="11" style="font-size: 48px; font-weight: 700; margin: 0; color: #000;">0</h2>
<h5 class="name" style="margin-top: 15px; color: #000;">Schools in Kenya</h5>
</div>
</div>
</div>
</section>
<!-- Video section -->
<section class="video_section" style="padding: 40px 0;">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div
style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);">
<iframe src="https://www.youtube.com/embed/lFkNB2J0bpM"
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
</div>
</div>
</section>
<!-- About section -->
<section class="about_section layout_padding-bottom" id="about-us">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-6">
<div class="detail-box">
<h2 style="margin-bottom: 25px;">About us</h2>
<p>
RISE is a student-led initiative bringing robotics education to young learners at the
<a style="all:initial; cursor:inherit; color:rgb(0, 0, 255); text-decoration: underline;"
href="https://graceinitiative.org/">GRACE Academic Center</a> in Kisii, Kenya, in collaboration with
the nonprofit organization TEEEM. We've raised about $6,000 to provide VEX-IQ kits sufficient for 50
students, with 30 students currently actively participating in the program.
</p>
<a href="about.html">Read More</a>
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="img-box">
<img src="images/teeem.webp" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- Support Us section -->
<section class="professional_section layout_padding support_us" id="support-us">
<div class="container-fluid text-center" style="max-width: 1400px; padding: 0 40px;">
<div class="section-heading-container">
<h2>Support Our Mission</h2>
</div>
<div class="modern-support-wrapper">
<div class="support-content">
<h3 style="font-size: 1.8rem; font-weight: 700; margin-bottom: 20px;">Help Us Build the Future</h3>
<p style="color: #4a5568; line-height: 1.7; font-size: 1.1rem;">
Your support enables us to provide VEX-IQ kits and create a sustainable STEM curriculum for students
at the GRACE Academic Center in Kenya. 100% of your donation goes directly to equipment and curriculum development.
</p>
<a href="https://secure.givelively.org/donate/teeem-foundation/teeem-rise" target="_blank" class="btn-premium">Donate Now</a>
</div>
<div class="support-visual">
<img src="https://images.givelively.org/nonprofits/da121b0f-b89e-483e-84e7-005a0369c7b9/campaigns/millburn-rise-robotics-in-schools-everywhere/background_images/millburn-rise-robotics-in-schools-everywhere_processed_03a2faabbd4189040ce72217041b74b7e4396c13cc1be8bb8087b80a4b39ded6_background_image.png" alt="Support Mission">
</div>
</div>
</div>
</section>
<!-- Contact Us section -->
<section id="contact-us" class="contact_section layout_padding">
<div class="container">
<div class="heading_container">
<h2>Contact Us</h2>
</div>
<div class="row">
<div class="col-md-6">
<form action="">
<div><input type="text" placeholder="Name" /></div>
<div><input type="text" placeholder="Phone Number" /></div>
<div><input type="email" placeholder="Email" /></div>
<div><input type="text" class="message-box" placeholder="Message" /></div>
<div class="d-flex">
<button>SEND</button>
</div>
</form>
</div>
<div class="col-md-6">
<div class="map_container">
<div class="map">
<iframe width="100%" height="100%" style="border:0;" loading="lazy" allowfullscreen
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3023.3889684329297!2d-74.31429462356116!3d40.72072867139302!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c3a8a6c2cd3201%3A0xe9d60f7ce2495493!2sMillburn%20High%20School!5e0!3m2!1sen!2sus!4v1701129999999">
</iframe>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="footer-container">
<div class="footer-grid">
<!-- Column 1: About -->
<div class="footer-col">
<a class="navbar-brand" href="index.html" style="margin-bottom: 20px; display: inline-block;">
<img src="images/rise-logo.png" alt="RISE Logo" style="height: 90px; width: auto; border-radius: 8px;">
</a>
<p>RISE is a student-led initiative dedicated to expanding access to robotics education for students in Kenya
and beyond, empowering the next generation of STEM leaders.</p>
</div>
<!-- Column 2: Quick Links -->
<div class="footer-col">
<h4>Quick Links</h4>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="ourteam.html">Our Team</a></li>
<li><a href="learn.html">Curriculum</a></li>
</ul>
</div>
<!-- Column 3: Contact Us -->
<div class="footer-col" id="footer-contact">
<h4>Contact Us</h4>
<div class="footer-contact-info">
<div class="contact-item">
<i class="fa fa-map-marker"></i>
<span>Millburn High School<br>Millburn, NJ</span>
</div>
<div class="contact-item">
<i class="fa fa-envelope"></i>
<span><a href="mailto:riserobotics@teeem.com" style="color: inherit;">riserobotics@teeem.com</a></span>
</div>
</div>
</div>
<!-- Column 4: Social Media -->
<div class="footer-col">
<h4>Follow Us</h4>
<div class="footer-social">
<a href="#" class="social-icon" title="Facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/rise.robotics/" target="_blank" class="social-icon" title="Instagram"><i
class="fa fa-instagram"></i></a>
<a href="https://www.youtube.com/channel/UCwPTQLYD3LR9unq53qp3jlA" target="_blank" class="social-icon"
title="YouTube"><i class="fa fa-youtube-play"></i></a>
<a href="https://www.linkedin.com/company/robotics-in-schools-everywhere/" target="_blank"
class="social-icon" title="LinkedIn"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="copyright">
© 2025 RISE Robotics. All Rights Reserved.
</div>
<div class="footer-links">
<a href="#" style="margin-left: 20px;">Privacy Policy</a>
<a href="#" style="margin-left: 20px;">Terms of Service</a>
</div>
</div>
</div>
</footer>
<!-- Carousel Script -->
<script>
const track = document.getElementById("carouselTrack");
const realSlides = Array.from(track.querySelectorAll(".carousel-slide"));
const total = realSlides.length;
const firstClone = realSlides[0].cloneNode(true);
const lastClone = realSlides[total - 1].cloneNode(true);
track.appendChild(firstClone);
track.insertBefore(lastClone, realSlides[0]);
let current = 1;
let isTransitioning = false;
function getProgressFills() {
return Array.from({ length: total }, (_, i) => document.getElementById(`prog-${i}`));
}
function startProgress(index) {
const fills = getProgressFills();
fills.forEach((fill, i) => {
fill.classList.remove("animating", "done");
if (i < index) fill.classList.add("done");
});
void fills[index].offsetWidth;
fills[index].classList.add("animating");
}
function goTo(index, animate) {
track.style.transition = animate === false ? "none" : "transform 0.8s ease-in-out";
track.style.transform = `translateX(-${index * 100}%)`;
current = index;
if (animate !== false) {
const dotIndex = (index - 1 + total) % total;
startProgress(dotIndex);
}
}
track.addEventListener("transitionend", () => {
if (current === 0) {
goTo(total, false);
startProgress(total - 1);
} else if (current === total + 1) {
goTo(1, false);
startProgress(0);
}
isTransitioning = false;
});
function moveSlide(step) {
if (isTransitioning) return;
isTransitioning = true;
goTo(current + step, true);
resetTimer();
}
function currentSlide(index) {
if (isTransitioning) return;
isTransitioning = true;
goTo(index + 1, true);
resetTimer();
}
function resetTimer() {
clearInterval(autoSlide);
const fills = getProgressFills();
const dotIndex = (current - 1 + total) % total;
fills[dotIndex].classList.remove("animating", "done");
void fills[dotIndex].offsetWidth;
fills[dotIndex].classList.add("animating");
autoSlide = setInterval(() => moveSlide(1), 5000);
}
goTo(1, false);
startProgress(0);
let autoSlide = setInterval(() => moveSlide(1), 5000);
</script>
<!-- Count-Up Animation Script -->
<script>
function animateCountUp() {
const counters = document.querySelectorAll('.count');
counters.forEach((counter, index) => {
const target = +counter.getAttribute('data-target');
const duration = 1200;
const delay = index * 300;
const startVal = 0;
const startTime = performance.now() + delay;
function update(now) {
if (now < startTime) { requestAnimationFrame(update); return; }
const elapsed = now - startTime;
const progress = Math.min(elapsed / duration, 1);
const eased = 1 - Math.pow(1 - progress, 3);
const value = Math.floor(startVal + (eased * target));
counter.textContent = counter.getAttribute("data-target") === "6000" ? "$" + value : value;
if (progress < 1) {
requestAnimationFrame(update);
} else {
counter.textContent = counter.getAttribute("data-target") === "6000" ? "$" + target : target;
}
}
requestAnimationFrame(update);
});
}
function startCountWhenVisible() {
const statsSection = document.querySelector('.feature_section');
const observer = new IntersectionObserver(entries => {
if (entries[0].isIntersecting) {
animateCountUp();
observer.disconnect();
}
});
observer.observe(statsSection);
}
startCountWhenVisible();
</script>
</body>
</html>