-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
796 lines (740 loc) · 39.8 KB
/
index.html
File metadata and controls
796 lines (740 loc) · 39.8 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
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="SecureScape - A portable security system with embedded image recognition, motion alerts, and offline operation.">
<meta name="keywords" content="portable security system, embedded image recognition, ESP32-CAM, remote surveillance, SecureScape, offline security">
<meta name="author" content="Senior Design Group 15, UCF">
<title>SecureScape - Portable Smart Security System</title>
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="styles.css">
<!-- Font Imports -->
<link href="https://fonts.googleapis.com/css?family=Lato:700|Open+Sans&display=swap" rel="stylesheet">
<!-- Font Awesome 6.x CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<!-- Favicon -->
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<!-- Header and Navigation -->
<header>
<nav>
<div class="nav-left">
<img src="images/firstlogo.png" alt="SecureScape Logo" class="logo">
<span class="brand-name">SecureScape</span>
</div>
<div class="hamburger" id="hamburger">
<i class="fas fa-bars"></i>
</div>
<ul class="nav-right">
<li><a href="#home" class="active">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#documents">Documents</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#demo">Project Demos</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<div class="hero">
<div class="hero-content">
<h1 class="hero-text">
<span class="welcome">Welcome to</span>
<span class="brand">
<span>S</span><span>e</span><span>c</span><span>u</span><span>r</span><span>e</span><span>S</span><span>c</span><span>a</span><span>p</span><span>e</span>
</span>
</h1>
<p class="hero-subtitle">Portable Smart Security for Remote Locations</p>
<div class="hero-cta">
<a href="#features" class="cta-button">
<span>Explore Features</span>
<i class="fas fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<!-- Main Content -->
<main>
<!-- Project Overview Section -->
<section id="home">
<h2>Project Overview</h2>
<p style="text-align: justify;">
<strong>SecureScape</strong> is a portable, smart security system designed for remote locations without internet access. Utilizing ESP32-CAM microcontrollers equipped with infrared sensors, our system detects motion in real-time, processes images locally using a custom-built, lightweight image analysis algorithm for person detection, and communicates alerts through a central control unit. The system is scalable up to three nodes, making it perfect for perimeter security. Whether you're camping or monitoring a remote site, SecureScape offers reliable security when you need it most.
</p>
<div class="system-flow">
<img src="images/processDiagram.png" alt="SecureScape System Flow" class="flow-diagram">
<p class="diagram-caption">System communication flow between nodes, central gadget, and mobile app</p>
</div>
</section>
<!-- Features Section -->
<section id="features">
<h2>Key Features</h2>
<ul class="features-list">
<li><i class="fas fa-camera"></i> <strong>Smart Threat Detection</strong> Local person detection algorithm runs on-device for real-time alerts without cloud processing.</li>
<li><i class="fas fa-wifi"></i> <strong>Offline Operation</strong> Functions without internet, perfect for remote areas.</li>
<li><i class="fas fa-battery-half"></i> <strong>Energy Efficient</strong> Low-power design with long battery life.</li>
<li><i class="fas fa-mobile-alt"></i> <strong>User Alerts</strong> Receive notifications via our mobile app or central gadget.</li>
<li><i class="fas fa-hiking"></i> <strong>Durable & Portable</strong> Designed to withstand outdoor conditions and easy to deploy.</li>
<li><i class="fas fa-shield-alt"></i> <strong>Privacy Focused</strong> All processing happens on-device, no cloud services required.</li>
</ul>
</section>
<!-- How It Works Section -->
<section id="how-it-works">
<h2>How It Works</h2>
<div class="how-it-works-content">
<div class="flow-diagram-container horizontal-flow">
<!-- Motion Detection -->
<div class="flow-component">
<div class="flow-icon">
<i class="fas fa-walking"></i>
</div>
<h4 class="flow-title">Motion Detection</h4>
<p class="flow-description">PIR sensor detects movement</p>
<div class="flow-connection">Triggers Camera</div>
</div>
<!-- First Arrow -->
<div class="flow-double-arrow">
<span>→</span>
<p>Motion Detected</p>
</div>
<!-- Image Processing -->
<div class="flow-component">
<div class="flow-icon-group">
<div class="flow-icon">
<i class="fas fa-camera"></i>
</div>
<div class="flow-icon">
<i class="fas fa-microchip"></i>
</div>
</div>
<h4 class="flow-title">Image Analysis</h4>
<p class="flow-description">ESP32-CAM captures & processes image using Edge Impulse ML</p>
<div class="flow-connection">Human Detection</div>
</div>
<!-- Second Arrow -->
<div class="flow-double-arrow">
<span>→</span>
<p>Person Detected</p>
</div>
<!-- Node Response -->
<div class="flow-component">
<div class="flow-icon-group">
<div class="flow-icon">
<i class="fas fa-lightbulb"></i>
</div>
<div class="flow-icon">
<i class="fas fa-bell"></i>
</div>
</div>
<h4 class="flow-title">Node Response</h4>
<p class="flow-description">Triggers LED lights and alarm</p>
<div class="flow-connection">Alert Transmission</div>
</div>
<!-- Third Arrow -->
<div class="flow-double-arrow">
<span>→</span>
<p>Send Alert</p>
</div>
<!-- Mobile Notification -->
<div class="flow-component">
<div class="flow-icon">
<i class="fas fa-mobile-alt"></i>
</div>
<h4 class="flow-title">User Alert</h4>
<p class="flow-description">Mobile app receives notification with captured image</p>
<div class="flow-connection">Real-time Monitoring</div>
</div>
</div>
</div>
</section>
<!-- Use Cases Section -->
<section id="use-cases">
<h2>Use Cases</h2>
<div class="use-cases-grid">
<div class="use-case-card">
<i class="fas fa-campground"></i>
<h3>Campsite Security</h3>
<p>Protect your campsite from intruders and wildlife disturbances.</p>
</div>
<div class="use-case-card">
<i class="fas fa-home"></i>
<h3>Remote Property Monitoring</h3>
<p>Keep an eye on cabins, construction sites, or other remote assets.</p>
</div>
<div class="use-case-card">
<i class="fas fa-plane"></i>
<h3>Mobile Security</h3>
<p>Secure temporary locations while traveling or during outdoor events.</p>
</div>
</div>
</section>
<!-- Project Documents Section -->
<section id="documents">
<h2>Project Documentation</h2>
<!-- Core Documentation -->
<div class="doc-category">
<h3>Core Documentation</h3>
<div class="document-grid">
<a href="documents/dncPaper.pdf" target="_blank" class="document-card">
<i class="fas fa-file-pdf"></i>
<h4>Divide & Conquer Document</h4>
<p>Initial project planning and task distribution documentation.</p>
<span class="status-badge complete">Complete</span>
</a>
<a href="documents/60pgPaper.pdf" target="_blank" class="document-card">
<i class="fas fa-file-pdf"></i>
<h4>Senior Design 1 Paper</h4>
<p>Comprehensive 60-page report detailing initial project design and specifications.</p>
<span class="status-badge complete">Complete</span>
</a>
<a href="documents/120pgPaper.pdf" target="_blank" class="document-card">
<i class="fas fa-file-pdf"></i>
<h4>Senior Design 1 Final Report</h4>
<p>Complete documentation of first semester progress and achievements.</p>
<span class="status-badge complete">Complete</span>
</a>
<a href="documents/8pgPaper.pdf" target="_blank" class="document-card">
<i class="fas fa-file-pdf"></i>
<h4>Conference Paper</h4>
<p>Academic paper detailing our research and implementation methodology.</p>
<span class="status-badge complete">Complete</span>
</a>
<a href="documents/sd2FinalPaper.pdf" target="_blank" class="document-card">
<i class="fas fa-file-pdf"></i>
<h4>Senior Design 2 Final Report</h4>
<p>Comprehensive documentation of the complete project implementation and results.</p>
<span class="status-badge complete">Complete</span>
</a>
</div>
</div>
<!-- Presentations & Demos -->
<div class="doc-category">
<h3>Presentations & Demonstrations</h3>
<div class="document-grid">
<!-- CDR Materials -->
<div class="presentation-group">
<h4 class="group-title">Critical Design Review (CDR)</h4>
<div class="presentation-items">
<a href="https://www.youtube.com/embed/j9Po0kmSDtE" target="_blank" class="document-card video-card">
<i class="fas fa-video"></i>
<h4>CDR Presentation Video</h4>
<p>Watch our Critical Design Review presentation.</p>
<span class="status-badge complete">Complete</span>
</a>
<a href="documents/cdrPres.pdf" target="_blank" class="document-card">
<i class="fas fa-file-powerpoint"></i>
<h4>CDR Presentation Slides</h4>
<p>Slides from our Critical Design Review presentation.</p>
<span class="status-badge complete">Complete</span>
</a>
</div>
</div>
<!-- Midterm Materials -->
<div class="presentation-group">
<h4 class="group-title">Senior Design 2 Midterm</h4>
<div class="presentation-items">
<a href="https://www.youtube.com/embed/WToqwQgZfzg" target="_blank" class="document-card video-card">
<i class="fas fa-video"></i>
<h4>Midterm Demo Video</h4>
<p>Watch our Senior Design 2 midterm progress demonstration.</p>
<span class="status-badge complete">Complete</span>
</a>
<a href="documents/midtermDemoPres.pdf" target="_blank" class="document-card">
<i class="fas fa-file-powerpoint"></i>
<h4>Midterm Presentation Slides</h4>
<p>Slides from our Senior Design 2 midterm presentation.</p>
<span class="status-badge complete">Complete</span>
</a>
</div>
</div>
<!-- Final Materials -->
<div class="presentation-group">
<h4 class="group-title">Final Presentation</h4>
<div class="presentation-items">
<a href="https://www.youtube.com/embed/fDwfUKgb1vk" target="_blank" class="document-card video-card">
<i class="fas fa-video"></i>
<h4>Final Presentation Video</h4>
<p>Watch our final project presentation and comprehensive overview.</p>
<span class="status-badge complete">Complete</span>
</a>
<a href="documents/finalPres.pdf" target="_blank" class="document-card">
<i class="fas fa-file-powerpoint"></i>
<h4>Final Presentation Slides</h4>
<p>Slides from our final project presentation.</p>
<span class="status-badge complete">Complete</span>
</a>
<a href="https://www.youtube.com/embed/00PXKWyzCL0" target="_blank" class="document-card video-card">
<i class="fas fa-video"></i>
<h4>Final Demonstration Video</h4>
<p>Watch our complete system demonstration and implementation results.</p>
<span class="status-badge complete">Complete</span>
</a>
</div>
</div>
</div>
</div>
<!-- Documents Section -->
<div class="doc-category">
<h3>GitHub Repositories</h3>
<div class="document-grid">
<a href="https://github.com/TopelJL/Deployable-Security-Sytem" target="_blank" class="document-card">
<i class="fab fa-github"></i>
<h4>Embedded System & Image Processing</h4>
<p>Core system implementation including ESP32-CAM setup, node communication, and image processing algorithms.</p>
<span class="status-badge complete">Main Repository</span>
</a>
<a href="https://github.com/KirbysGit/dssApp" target="_blank" class="document-card">
<i class="fab fa-github"></i>
<h4>Mobile Application</h4>
<p>Flutter-based mobile app for system control, notifications, and image review.</p>
<span class="status-badge complete">App Repository</span>
</a>
<a href="https://github.com/KirbysGit/dssWebsite" target="_blank" class="document-card">
<i class="fab fa-github"></i>
<h4>Project Website</h4>
<p>Source code for this documentation website.</p>
<span class="status-badge complete">Website Repository</span>
</a>
</div>
</div>
</section>
<!-- Team Members Section -->
<section id="team">
<h2>Meet the Team</h2>
<div class="team-grid">
<div class="member-card" data-expanded="false">
<div class="member-image-wrapper">
<div class="member-image" style="background-image: url('images/jaxonsPic.png');" loading="lazy"></div>
</div>
<h3>Jaxon Topel</h3>
<p class="role">Computer Engineer</p>
<p class="bio">Specializing in embedded systems and computer vision, Jaxon leads the development of our node-to-gadget communication and image processing algorithms.</p>
<button class="expand-toggle">
<i class="fas fa-chevron-down"></i>
<span class="toggle-text">Read more</span>
</button>
<div class="member-details">
<h4>Responsibilities:</h4>
<ul>
<li><i class="fas fa-check-circle"></i> Node → Gadget Communication</li>
<li><i class="fas fa-check-circle"></i> Image Processing Algorithm Development & Testing</li>
<li><i class="fas fa-check-circle"></i> System Architecture Design</li>
</ul>
<div class="social-links">
<a href="https://www.linkedin.com/in/jaxon-topel/" target="_blank" class="linkedin-link">
<i class="fab fa-linkedin"></i> Connect on LinkedIn
</a>
</div>
</div>
</div>
<div class="member-card" data-expanded="false">
<div class="member-image-wrapper">
<div class="member-image" style="background-image: url('images/phillipsPic.png');" loading="lazy"></div>
</div>
<h3>Phillip Murano</h3>
<p class="role">Electrical Engineer</p>
<p class="bio">Expert in power systems and CAD design, Phillip ensures our hardware is efficient and professionally engineered.</p>
<button class="expand-toggle">
<i class="fas fa-chevron-down"></i>
<span class="toggle-text">Read more</span>
</button>
<div class="member-details">
<h4>Responsibilities:</h4>
<ul>
<li><i class="fas fa-check-circle"></i> CAD Development</li>
<li><i class="fas fa-check-circle"></i> Node: Alarm system / LEDs</li>
<li><i class="fas fa-check-circle"></i> Power Management</li>
</ul>
<div class="social-links">
<a href="https://www.linkedin.com/in/phillip-murano/" target="_blank" class="linkedin-link">
<i class="fab fa-linkedin"></i> Connect on LinkedIn
</a>
</div>
</div>
</div>
<div class="member-card" data-expanded="false">
<div class="member-image-wrapper">
<div class="member-image" style="background-image: url('images/dylansPic.png');" loading="lazy"></div>
</div>
<h3>Dylan Myers</h3>
<p class="role">Electrical Engineer</p>
<p class="bio">Hardware integration specialist focusing on PCB design and sensor implementation for optimal system performance.</p>
<button class="expand-toggle">
<i class="fas fa-chevron-down"></i>
<span class="toggle-text">Read more</span>
</button>
<div class="member-details">
<h4>Responsibilities:</h4>
<ul>
<li><i class="fas fa-check-circle"></i> PCB Design</li>
<li><i class="fas fa-check-circle"></i> Gadget Peripherals</li>
<li><i class="fas fa-check-circle"></i> Node: Camera / IR Sensors</li>
</ul>
<div class="social-links">
<a href="https://www.linkedin.com/in/dylan-myers-1280a5228/" target="_blank" class="linkedin-link">
<i class="fab fa-linkedin"></i> Connect on LinkedIn
</a>
</div>
</div>
</div>
<div class="member-card" data-expanded="false">
<div class="member-image-wrapper">
<div class="member-image" style="background-image: url('images/kirbsPic.png');" loading="lazy"></div>
</div>
<h3>Colin Kirby</h3>
<p class="role">Computer Engineer</p>
<p class="bio">Mobile & Frontend Developer responsible for the Flutter-based mobile application and project website, ensuring seamless user interaction with the SecureScape system.</p>
<button class="expand-toggle">
<i class="fas fa-chevron-down"></i>
<span class="toggle-text">Read more</span>
</button>
<div class="member-details">
<h4>Responsibilities:</h4>
<ul>
<li><i class="fas fa-check-circle"></i> Mobile App Development</li>
<li><i class="fas fa-check-circle"></i> Gadget → App Communication</li>
<li><i class="fas fa-check-circle"></i> Website Development</li>
</ul>
<div class="social-links">
<a href="https://www.linkedin.com/in/colinwkirby/" target="_blank" class="linkedin-link">
<i class="fab fa-linkedin"></i> Connect on LinkedIn
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Demo Section -->
<section id="demo">
<h2>Senior Design 1 Project Demo</h2>
<div class="video-container">
<iframe
id="demo-video"
src="https://www.youtube.com/embed/-2jcz-RWzyo"
title="SecureScape SD1 Demo"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="demo-description">
<h3>Senior Design 1 Project Walkthrough</h3>
<ul class="demo-highlights">
<li><i class="fas fa-microchip"></i> ESP32-CAM Node Breakdown</li>
<li><i class="fas fa-camera"></i> Image Receival & Processing</li>
<li><i class="fas fa-code"></i> Software Architecture Overview</li>
<li><i class="fas fa-cogs"></i> Hardware Integration Progress</li>
<li><i class="fas fa-brain"></i> Next Steps & Future Work</li>
</ul>
<p class="demo-note">This demonstration showcases our initial prototype implementation, including the ESP32-CAM setup, communication protocols, and early mobile app development.</p>
</div>
</section>
<!-- CDR Presentation Section -->
<section id="cdr-presentation">
<h2>SD2 - Critical Design Review Presentation</h2>
<div class="video-container">
<iframe
id="cdr-video"
src="https://www.youtube.com/embed/j9Po0kmSDtE"
title="SecureScape CDR Presentation"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="demo-description">
<h3>SD2 - CDR Overview</h3>
<ul class="demo-highlights">
<li><i class="fas fa-project-diagram"></i> Complete system architecture</li>
<li><i class="fas fa-microchip"></i> Hardware implementation details</li>
<li><i class="fas fa-mobile-alt"></i> Mobile application interface</li>
<li><i class="fas fa-chart-line"></i> Testing results and validation</li>
</ul>
</div>
</section>
<!-- Midterm Demo Section -->
<section id="midterm-demo">
<h2>SD2 - Midterm Demo</h2>
<div class="video-container">
<iframe
id="midterm-video"
src="https://www.youtube.com/embed/WToqwQgZfzg"
title="SecureScape Midterm Demo"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="demo-description">
<h3>SD2 - Midterm Progress</h3>
<ul class="demo-highlights">
<li><i class="fas fa-mobile-alt"></i> Mobile application demonstration</li>
<li><i class="fas fa-microchip"></i> Hardware implementation progress</li>
<li><i class="fas fa-brain"></i> AI detection capabilities</li>
<li><i class="fas fa-tasks"></i> System integration overview</li>
</ul>
</div>
</section>
<!-- Final Presentation Section -->
<section id="final-presentation">
<h2>SD2 - Final Presentation</h2>
<div class="video-container">
<iframe
id="final-presentation-video"
src="https://www.youtube.com/embed/fDwfUKgb1vk"
title="SecureScape Final Presentation"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="demo-description">
<h3>SD2 - Final Project Overview</h3>
<ul class="demo-highlights">
<li><i class="fas fa-project-diagram"></i> Complete System Architecture</li>
<li><i class="fas fa-chart-line"></i> Performance Results</li>
<li><i class="fas fa-check-circle"></i> Project Achievements</li>
<li><i class="fas fa-forward"></i> Future Development Plans</li>
</ul>
</div>
</section>
<!-- Final Demo Section -->
<section id="final-demo">
<h2>SD2 - Final Demo</h2>
<div class="video-container">
<iframe
id="final-demo-video"
src="https://www.youtube.com/embed/00PXKWyzCL0"
title="SecureScape Final Demo"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="demo-description">
<h3>SD2 - Complete System Demonstration</h3>
<ul class="demo-highlights">
<li><i class="fas fa-cogs"></i> Full System Integration</li>
<li><i class="fas fa-mobile-alt"></i> Mobile App Features</li>
<li><i class="fas fa-camera"></i> Node Detection System</li>
<li><i class="fas fa-network-wired"></i> Communication Network</li>
</ul>
</div>
</section>
<!-- Showcase Demo Section -->
<section id="showcase-demo">
<h2>SD2 - Showcase Demo</h2>
<div class="video-container">
<iframe
id="showcase-demo-video"
src="https://www.youtube.com/embed/vEHdRqrL-1E"
title="SecureScape Showcase Demo"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="demo-description">
<h3>SD2 - Project Showcase</h3>
<ul class="demo-highlights">
<li><i class="fas fa-star"></i>Motivations</li>
<li><i class="fas fa-microchip"></i>Project Overview</li>
<li><i class="fas fa-tools"></i> System Capabilities</li>
<li><i class="fas fa-video"></i> Project Demos</li>
</ul>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Get in Touch</h2>
<p>Interested in learning more about SecureScape? Reach out to us!</p>
<a href="mailto:co201115@ucf.edu" class="contact-button">Contact Us</a>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-content">
<p>© 2024 Senior Design Group 15 - University of Central Florida</p>
<ul class="social-media">
<li>
<a href="https://github.com/TopelJL/Deployable-Security-Sytem" target="_blank" title="Core System Repository">
<i class="fab fa-github"></i>
<span class="repo-label">Core</span>
</a>
</li>
<li>
<a href="https://github.com/KirbysGit/dssApp" target="_blank" title="Mobile App Repository">
<i class="fab fa-github"></i>
<span class="repo-label">App</span>
</a>
</li>
<li>
<a href="https://github.com/KirbysGit/dssWebsite" target="_blank" title="Website Repository">
<i class="fab fa-github"></i>
<span class="repo-label">Web</span>
</a>
</li>
</ul>
</div>
</footer>
<!-- JavaScript -->
<script>
document.addEventListener('DOMContentLoaded', () => {
// Smooth Scroll Function
const smoothScroll = (target, duration = 1000) => {
const targetElement = document.querySelector(target);
if (!targetElement) return;
const targetPosition = targetElement.getBoundingClientRect().top + window.pageYOffset;
const startPosition = window.pageYOffset;
const distance = targetPosition - startPosition;
let startTime = null;
const animation = currentTime => {
if (startTime === null) startTime = currentTime;
const timeElapsed = currentTime - startTime;
const progress = Math.min(timeElapsed / duration, 1);
// Easing function for smooth acceleration and deceleration
const easeInOutCubic = t => t < .5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1;
window.scrollTo(0, startPosition + (distance * easeInOutCubic(progress)));
if (timeElapsed < duration) {
requestAnimationFrame(animation);
}
};
requestAnimationFrame(animation);
};
// Add smooth scroll to all navigation links
document.querySelectorAll('.nav-right a, .cta-button').forEach(link => {
link.addEventListener('click', e => {
e.preventDefault();
const target = link.getAttribute('href');
smoothScroll(target);
// Close mobile menu if open
const navMenu = document.querySelector('.nav-right');
const hamburger = document.getElementById('hamburger');
if (navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
hamburger.classList.remove('active');
}
});
});
// Hero Text Animation
const heroText = document.querySelector('.hero-text');
const brandLetters = heroText.querySelectorAll('.brand span');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
animateText();
observer.unobserve(entry.target);
}
});
}, { threshold: 0.5 });
observer.observe(heroText);
function animateText() {
brandLetters.forEach((letter, index) => {
letter.style.opacity = '0';
letter.style.transform = 'translateY(20px)';
setTimeout(() => {
letter.style.transition = `opacity 0.5s ease-in-out ${index * 0.1}s, transform 0.5s ease-in-out ${index * 0.1}s`;
letter.style.opacity = '1';
letter.style.transform = 'translateY(0)';
}, 50);
});
}
// Hamburger Menu Toggle
const hamburger = document.getElementById('hamburger');
const navMenu = document.querySelector('.nav-right');
hamburger.addEventListener('click', () => {
navMenu.classList.toggle('show');
hamburger.classList.toggle('active');
});
// Close menu when clicking outside
document.addEventListener('click', (e) => {
if (!e.target.closest('.nav-right') && !e.target.closest('.hamburger') && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
hamburger.classList.remove('active');
}
});
// Close menu when clicking a link
const navLinks = document.querySelectorAll('.nav-right a');
navLinks.forEach(link => {
link.addEventListener('click', () => {
navMenu.classList.remove('show');
hamburger.classList.remove('active');
});
});
// Update active link on scroll
const sections = document.querySelectorAll('section');
window.addEventListener('scroll', () => {
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (window.pageYOffset >= sectionTop - 200) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href').slice(1) === current) {
link.classList.add('active');
}
});
});
// Apply staggered animation delays to team cards
const cards = document.querySelectorAll('.member-card');
cards.forEach((card, index) => {
card.style.setProperty('--delay', `${index * 0.2}s`);
});
// Team Member Card Expansion
cards.forEach(card => {
const toggle = card.querySelector('.expand-toggle');
const toggleText = toggle.querySelector('.toggle-text');
toggle.addEventListener('click', (e) => {
e.stopPropagation(); // Prevent card click from triggering
const isExpanded = card.getAttribute('data-expanded') === 'true';
// Close all other cards
cards.forEach(otherCard => {
if (otherCard !== card && otherCard.getAttribute('data-expanded') === 'true') {
otherCard.setAttribute('data-expanded', 'false');
const otherToggleText = otherCard.querySelector('.toggle-text');
otherToggleText.textContent = 'Read more';
}
});
// Toggle current card
card.setAttribute('data-expanded', !isExpanded);
toggleText.textContent = isExpanded ? 'Read more' : 'Read less';
});
// Make the whole card clickable
card.addEventListener('click', () => {
toggle.click(); // Trigger the toggle button click
});
// Prevent clicks on links and details from triggering card expansion
const preventPropagation = card.querySelectorAll('a, .member-details');
preventPropagation.forEach(element => {
element.addEventListener('click', (e) => e.stopPropagation());
});
});
// Modal functionality
const modal = document.getElementById('videoModal');
const closeBtn = document.querySelector('.close-modal');
const videoFrame = document.getElementById('youtubeVideo');
const videoUrl = 'https://www.youtube.com/embed/VIDEO_ID'; // Replace VIDEO_ID with your actual YouTube video ID
window.openVideoModal = function() {
modal.style.display = 'flex';
videoFrame.src = videoUrl;
}
closeBtn.onclick = function() {
modal.style.display = 'none';
videoFrame.src = ''; // Stop video playback
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = 'none';
videoFrame.src = ''; // Stop video playback
}
}
});
</script>
</body>
</html>