-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
238 lines (195 loc) · 10.4 KB
/
portfolio.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
---
layout: null
title: Portfolio
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solid Design Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #5c5c5c;
padding: 20px;
}
h1 {
font-size: 56px;
color: #f8f8f8;
text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.862);
font-family: 'Arial', sans-serif; /* Change the font family to your desired font */
font-weight: bold; /* Make the text bold */
text-transform: uppercase; /* Convert text to uppercase */
text-align: center;
animation: pulse 3s infinite;
}
@keyframes pulse {
0% {
transform: scale(0.7);
}
50% {
transform: scale(1);
}
100% {
transform: scale(0.7);
}
}
.portfolio-items {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.portfolio-item {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 25px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
overflow: hidden;
transition: transform 0.3s, box-shadow 0.3s;
max-width: 100%; /* Limit the maximum width of the item */
transform: scale(0.75);
}
.portfolio-item:hover {
transform: scale(0.8);
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}
.portfolio-image {
width: 100%; /* Make sure the image takes up the full width of the item */
height: auto;
transition: filter 0.5s;
}
.portfolio-item:hover .portfolio-image {
filter: grayscale(50%);
}
.portfolio-title {
font-size: 18px;
text-align: center;
font-weight: bold;
margin: 10px 0;
padding: 10px;
}
.portfolio-item:hover .portfolio-title {
transform: scale(1.05);
color: black;
}
.return-button {
display: block;
padding: 10px 20px;
background-color: #007bff; /* Button background color */
color: #fff; /* Button text color */
text-decoration: none; /* Remove underline on the link */
border-radius: 25px; /* Add rounded corners */
font-weight: bold; /* Make text bold */
justify-content: center;
text-align: center;
transition: background-color 0.3s ease; /* Add a hover effect */
}
.return-button:hover {
background-color: #0056b3; /* Change background color on hover */
}
</style>
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/js/lightbox.min.js"></script> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.js"></script>
</head>
<body>
<h1>My Design Portfolio</h1>
<div class="portfolio-items"></div>
<a data-fancybox="portfolio" href="/resume/CAD/sawmachinecad.jpg" data-caption="Saw and Deburr Machine Solid Model">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5341.png" alt="saw machine">
<div class="portfolio-title">Semi-Automated Saw & Deburr Machine</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/sawmachine.jpg" data-caption="Saw and Deburr Machine for Robot Cell" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5272.png" data-caption="4th Axis Machine Fixture with Milled Part">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5272.png" alt="4th axis mach fix">
<div class="portfolio-title">4th Axis Machine Fixture</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/f5272nopart.png" data-caption="4th Axis Machine Fixture without Part" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/bumperbeamRHSmachfix.jpg" data-caption="Installed 4th Axis Machine Fixture RHS" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5407.png" data-caption="Compound Angle Elu Saw Fixture">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5407.png" alt="elu saw fix">
<div class="portfolio-title">Semi-Automated Compound Angle Saw Fixture</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/f5407nopart.png" data-caption="Elu Saw Machine Fixture without Part" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5444.png" data-caption="Assembly, Part Mark, and Automated Quality Inspection Station">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5444.png" alt="assembly station">
<div class="portfolio-title">Assembly, Part Mark, and Quality Inspection Station</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/assemblystation.png" data-caption="Assembly Machine with Ancillaries" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5238.png" data-caption="Assembly and Component Fixation Machine">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5238.png" alt="dimple machine">
<div class="portfolio-title">Assembly Machine</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/f5238transparent.png" data-caption="Assembly and Component Fixation Machine Transparent Part" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5263close.png" data-caption="Assembly, Component Fixation, and Part Mark Machine">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5263.png" alt="crimp machine">
<div class="portfolio-title">Assembly and Part Mark Machine</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/crimpmachine.jpg" data-caption="Assembly Machine before Electrical and Plumbing" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/crimpmachine2.jpg" data-caption="Assembly Machine in Production" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5427.png" data-caption="Production Drill Table Model">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5427.png" alt="drill table">
<div class="portfolio-title">Drill Table</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/drilltable.png" data-caption="Production Drill Table Electrified and Plumbed" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/scrapbin.png" data-caption="Scrap Bin for Non-Conforming Assemblies">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/scrapbin.png" alt="scrap bin">
<div class="portfolio-title">Scrap Bin</div>
</div>
</a>
<a data-fancybox="portfolio" href="/resume/CAD/f5222.png" data-caption="Crush Can Part Marking Machine Model">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5222.png" alt="part mark">
<div class="portfolio-title">Part Mark Machine</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/crushcanpartmark.jpg" data-caption="Semi-Automated Park Marking Machine" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5298.png" data-caption="Robot Saw Fixture with Part">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5298.png" alt="robosaw fix">
<div class="portfolio-title">Robot Saw Fixture</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/robosawmachfix.jpg" data-caption="Teach Pendant Robot Saw Machine Fixture" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5264.png" data-caption="4th Axis Machine Fixture with Part">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5264.png" alt="4th axis fixture">
<div class="portfolio-title">4th Axis Machine Fixture</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/f5264machfix.png" data-caption="4th Axis Machine Fixture without Part" style="display: none;"></a>
<a data-fancybox="portfolio" href="/resume/CAD/f5384.png" data-caption="Automated Flare and Drill Machine without Part">
<div class="portfolio-item">
<img class="portfolio-image" src="/resume/CAD/f5384.png" alt="flare and drill">
<div class="portfolio-title">Automated Flare/Notch and Drill Machine</div>
</div>
</a><a data-fancybox="portfolio" href="/resume/CAD/f5384withpart.png" data-caption="Automated Flare and Drill Machine with Part" style="display: none;"></a>
</div>
<a href="https://nrhartfrc.github.io/resume/" class="return-button">← Return to Resume</a>
<script>
$(document).ready(function () {
$('[data-fancybox="portfolio"]').fancybox({
buttons: [
"zoom",
"slideShow",
"fullScreen",
"download",
"thumbs",
"close"
],
loop: true
});
});
</script>
</body>
</html>