-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
264 lines (242 loc) · 13.5 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
<!DOCTYPE html>
<html>
<head>
<title>Simon Nordon Developer Blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<link href="./resources/css/style.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Exo 2:100,300,400,500,700,900" rel="stylesheet">
</head>
<body id="index">
<div class=overflow-wrapper>
<div class=body-width>
<!--Nav Bar Begin-->
<nav>
<a id="nav-logo" href="/index.html">
<p id="nav-logo-initial">S</p>
<div id="nav-logo-dot"></div>
<p>Nordon</p>
</a>
<div id="nav-menu">
<a id=nav-menu-work href="/index.html">Work</a>
<a id=nav-menu-blog href="/blog.html">Blog</a>
<a id=nav-menu-about href="/about.html">About</a>
</div>
</nav>
<!--Hero Begin-->
<section id='hero'>
<div id='hero-bg'></div>
<section id='hero-text'>
<p>Hello, I am</p>
<h1>Simon Nordon</h1>
<p>XR, Games, Mobile & Web Developer.</p>
</section>
<section id='hero-image'>
<img src="resources/images/hero/Render02.png" alt="a floating cube">
<img id='hero-image-shadow' src="resources/images/hero/Render02_Shadow.png" alt="a cube's shadow">
</section>
</section>
<div class=divider>
<p>recent posts</p>
</div>
<!--Recent Projects Begin-->
<script>
function AnimateStart(string, width) {
var learnMoreLine = document.getElementById(string + "-learn-more-line");
var learnMoreDot = document.getElementById(string + "-learn-more-dot");
var heroImg = document.getElementById(string + '-hero');
learnMoreLine.style.width = width;
learnMoreDot.style.height = '20px';
learnMoreDot.style.width = '20px';
learnMoreDot.style.marginTop = '-10px';
learnMoreDot.style.backgroundColor = 'white';
learnMoreDot.style.opacity = '1';
heroImg.style.transform = 'scale(1.03)';
}
function AnimateEnd(string) {
var learnMoreLine = document.getElementById(string + "-learn-more-line");
var learnMoreDot = document.getElementById(string + "-learn-more-dot");
var heroImg = document.getElementById(string + '-hero');
learnMoreLine.style.width = '135px';
learnMoreDot.style.height = '1px';
learnMoreDot.style.width = '1px';
learnMoreDot.style.marginTop = '0px';
learnMoreDot.style.opacity = '0'
heroImg.style.transform = 'scale(1)';
}
</script>
<section class="project right">
<article class='project-description'>
<h2>Unity WebGL Input</h2>
<p>Unity WebGL Mouse Input is completely broken. Here's how I fixed it.</p>
<a href="sanctuaryworld.html" onmouseover="AnimateStart('sw','25.5em')"
onmouseout="AnimateEnd('sw')">
<h3><span><img src="resources/images/arrow.png" alt="an arrow" height=12px></span>Learn more
<div id='sw-learn-more-line' class=learn-more-line>
<div id='sw-learn-more-dot' class=learn-more-dot></div>
</div>
</h3>
</a>
</article>
<figure class='project-image'>
<figure class='project-image'>
<a href="" onmouseover="AnimateStart('b1','40em')" onmouseout="AnimateEnd('b1')">
<img id='b1-image' class='project-image-bg' src="resources/images/blog-coming-soon.jpg">
</a>
</figure>
</figure>
<h2 class=project-mobile-title>Sanctuary World</h2>
</section>
<section class="project">
<article class='project-description'>
<h2>Kindergo</h2>
<p>Kindergo is a children's reading app with over 100,000 users and has been featured as app of the
day several times.</p>
<a href="kindergo.html" onmouseover="AnimateStart('kindergo','40em')"
onmouseout="AnimateEnd('kindergo')">
<h3>Learn more
<span><img src="resources/images/arrow.png" alt="an arrow" height=12px></span>
<div id='kindergo-learn-more-line' class=learn-more-line>
<div id='kindergo-learn-more-dot' class=learn-more-dot></div>
</div>
</h3>
</a>
</article>
<figure class='project-image'>
<img class='project-image-bg' src="resources/images/kindergo/Kindergo-Hero.jpg">
<a href="kindergo.html" onmouseover="AnimateStart('kindergo','40em')"
onmouseout="AnimateEnd('kindergo')"><img id='kindergo-hero' class='project-image-hero'
src="resources/images/kindergo/GoGoCutout.png"></a>
</figure>
<h2 class=project-mobile-title>Kindergo</h2>
</section>
<section class="project right">
<article class='project-description'>
<h2>Sanctuary World</h2>
<p>Sanctuary World is mobile game released along side the premiere of "The Wishmas Tree". The first
feature film from Pony up Picture Studios.</p>
<a href="sanctuaryworld.html" onmouseover="AnimateStart('sw','25.5em')"
onmouseout="AnimateEnd('sw')">
<h3><span><img src="resources/images/arrow.png" alt="an arrow" height=12px></span>Learn more
<div id='sw-learn-more-line' class=learn-more-line>
<div id='sw-learn-more-dot' class=learn-more-dot></div>
</div>
</h3>
</a>
</article>
<figure class='project-image'>
<img class='project-image-bg' src="resources/images/sanctuaryworld/SW_Hero_BG.jpg">
<a href="sanctuaryworld.html" onmouseover="AnimateStart('sw','25.5em')"
onmouseout="AnimateEnd('sw')"><img id='sw-hero' class='project-image-hero'
src="resources/images/sanctuaryworld/Frogman01.png"></a>
</figure>
<h2 class=project-mobile-title>Sanctuary World</h2>
</section>
<section class="project">
<article class='project-description'>
<h2>Warhammer Warlords</h2>
<p>Warlords is a two week design challenge to create a card game set in the Warhammer universe.
Awaiting IP approval.</p>
<a href="warhammerwarlords.html" onmouseover="AnimateStart('ww','40em')"
onmouseout="AnimateEnd('ww')">
<h3>Learn more
<span><img src="resources/images/arrow.png" alt="an arrow" height=12px></span>
<div id='ww-learn-more-line' class=learn-more-line>
<div id='ww-learn-more-dot' class=learn-more-dot></div>
</div>
</h3>
</a>
</article>
<figure class='project-image'>
<img class='project-image-bg' src="resources/images/warhammerwarlords/hero-image-bg.jpg">
<a href="warhammerwarlords.html" onmouseover="AnimateStart('ww','40em')"
onmouseout="AnimateEnd('ww')"><img id='ww-hero' class='project-image-hero'
src="resources/images/warhammerwarlords/warhammer-warlords-hero.png"></a>
</figure>
<h2 class=project-mobile-title>Warhammer Warlords</h2>
</section>
<div class=divider>
</div>
<Section id='blog-link'>
<a href="blog.html">Read the Blog <img src="/resources/images/arrow.png" alt="an arrow" height=16px></a>
</Section>
<div class=divider>
</div>
<!--Footer Begin-->
<footer>
<script>
function Hint(string) {
if (string == 'email') {
var targetID = document.getElementById('email-hint');
var otherID = document.getElementById('phone-hint');
otherID.style.opacity = '0';
otherID.style.zIndex = '0';
targetID.style.opacity = '1';
targetID.style.zIndex = '1';
return;
}
else if (string == 'phone') {
var targetID = document.getElementById('phone-hint');
var otherID = document.getElementById('email-hint');
otherID.style.opacity = '0';
otherID.style.zIndex = '0';
targetID.style.opacity = '1';
targetID.style.zIndex = '1';
return;
}
else {
var targetID = document.getElementById('phone-hint');
var otherID = document.getElementById('email-hint');
otherID.style.opacity = '0';
otherID.style.zIndex = '0';
targetID.style.opacity = '0';
targetID.style.zIndex = '0';
return;
}
}
</script>
<section onmouseover="Hint('')">
<h2>Want to know more?</h2>
<p>Feel free to call, text or email any time. You can also learn more about me <span><a
id="highlight" href="/about.html">here</a></span>.</p>
</section>
<section id="footer">
<a id="footer-image" href="/about.html" onmouseover="Hint()">
<img src="resources/images/headshots/HeadShot01.jpg" alt="Simon Nordon Headshot"></a>
<section id="footer-links">
<div id="footer-links-contact">
<!--Special Hint Links-->
<div id='email-hint' class=footer-links-contact-hint onmouseout="Hint()">
<p>[email protected]</p>
</div>
<div id='phone-hint' class=footer-links-contact-hint onmouseout="Hint()">
<p>+61 426 747 486</p>
</div>
<!--Normal Links-->
<a id="footer-links-contact-email" href="mailto:[email protected]"
onmouseover="Hint('email')">
<img src="resources/images/gmail_logo.png" height=16px alt="Email">
</a>
<a id="footer-links-contact-phone" href="tel:+61426-747-486" onmouseover="Hint('phone')">
<img src="resources/images/phone_logo.png" height=16px alt="Phone Number">
</a>
<a href="https://www.linkedin.com/in/simon-nordon-65868b76/" target="_blank"
onmouseover="Hint('')">
<img src="resources/images/logoSocialA.png" height=18px alt="">
</a>
<a href="https://twitter.com/SimonNordon" target="_blank" onmouseover="Hint('')">
<img src="resources/images/logoSocialB.png" height=16px alt="">
</a>
</div>
<a id="footer-links-resume" href="resources/downloads/simon-nordon-resume-2020.pdf"
download="resources/downloads/simon-nordon-resume-2020.pdf" onmouseover="Hint()">Download
Resume</a>
</section>
</section>
<section>
<p id='footer-trademark'>This website was made by me from scratch</p>
<p id='footer-copyright'>© Simon Nordon 2020</p>
</section>
</footer>
</div>
</div>
</body>