-
Notifications
You must be signed in to change notification settings - Fork 0
/
space-details.html
141 lines (117 loc) · 6.16 KB
/
space-details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Space Invaders Details</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<main id="main">
<!-- ======= Portfolio Details ======= -->
<div
id="portfolio-details"
class="portfolio-details"
>
<div class="container">
<div class="row mb-xl-4 mb-5">
<h2 class="portfolio-title">Space Invaders</h2> <!--title-->
<!--carousel-->
<div class="col-xl-8 col-12">
<img class="img-fluid" src="assets/img/portfolio/space-invaders/space-invaders.jpg" alt="" style="object-fit: cover; object-position: center; width: 100%; height: auto;" >
</div> <!--carousel-->
<!--Overview-->
<div class="col-xl-4 col-12 portfolio-info ">
<h3 class="card-title fw-bold">Project Overview</h3>
<p style="font-style: italic;" class="mb-2">
My partner and I implemented the classic space invaders arcade game using an arduino mini and ADAfruit RGB matrix. The player moves the "spaceship" with a potentiometer and fires with a button.
</p>
<p class="mt-0" style="font-style: italic;">
Unfortunately the game can only be played with an Arduino Uno and an RGB LED Matrix as of now.
</p>
<p><span><strong>Date: </strong></span>Winter 2019</p>
<div class="portfolio-details-links"> <!--action buttons-->
<a href="" class="details-modal-trigger" title="Source Code" data-details-url="https://drive.google.com/drive/folders/15xLrD31FpziCSSVF8mEXHV-yC1Q2jwbO?usp=sharing" data-bs-toggle="modal" data-bs-target="#details-modal"><i class="bx bx-code-alt"></i></a>
</div>
</div><!--overview col-->
</div> <!--end top row-->
<!--information-->
<div class="row">
<div class="col-xl-8 col-12 portfolio-info portfolio-details-section">
<h4>Project Role</h4>
<p>
My partner and I worked together in the same IDE (i.e., pair programming) to implement the game and all functionality.
</p>
</div>
<div class="col-12 portfolio-info portfolio-details-section">
<h4>Relevant Technology</h4>
<ul class="details-tech">
<li>Arduino Uno</li>
<li>Arduino IDE</li>
<li>C++</li>
<li>RGB Matrix LED Board</li>
</ul>
</div>
<div class="col-12 portfolio-info portfolio-details-section">
<h4>Relevant Skills</h4>
<ul class="details-skills">
<li>Object Oriented Programming</li>
<li>Game Development</li>
<li>Team Coordination and Communication</li>
</ul>
</div>
</div> <!--end bottom row information-->
</div> <!--end container-->
</div><!-- End Portfolio Details -->
</main><!-- End #main -->
<!--=== Request Access Modal for details lightbox ===-->
<div class="modal fade details-modal" id="details-modal" tabindex="-1" aria-labelledby="detailsModalLabel" aria-hidden="true">
<div class="modal-dialog ">
<div class="modal-content bg-dark">
<div class="modal-header">
<h1 class="modal-title fs-5" id="detailsModalLabel" style="color: var(--color-lighter);"">Permission Required</h1>
<i class="bx bx-x fs-2 close-btn" data-bs-dismiss="modal" aria-label="Close"></i>
</div>
<div class="modal-body">
<h6>Have you requested access already?</h6>
<p>
Due to University of Michigan's academic integrity and honor code policies, source code for several projects must remain private.
</p>
<p>
Please use the "contact" section or my direct email to send an email containing the project of interest and your google account that should be given access.
</p>
<p>
Thanks
</p>
</div>
<div class="modal-footer d-flex flex-column flex-sm-row justify-content-center justify-content-sm-end align-items-center">
<button type="button" id="no-btn" class="btn no-btn d-sm-inline-block" data-bs-dismiss="modal">No, Not Yet</button>
<a href="https://drive.google.com/drive/folders/15xLrD31FpziCSSVF8mEXHV-yC1Q2jwbO?usp=sharing" target="_blank" id="yes-btn" class="btn yes-btn d-sm-inline-block">Yes, Continue</a>
<button type="button" class="btn btn-secondary d-sm-inline-block" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/js/main.js"></script> -->
</body>
</html>