-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
195 lines (173 loc) · 5.55 KB
/
Copy pathindex.html
File metadata and controls
195 lines (173 loc) · 5.55 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
<!DOCTYPE HTML>
<html>
<head>
<title>Alexander White - Portfolio</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<style>
.game-wrapper {
position: relative;
width: 100%;
max-width: 1024px;
margin: 2em auto;
padding-bottom: 93.75%;
height: 0;
overflow: hidden;
background: #000;
border-radius: 4px;
box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.game-wrapper iframe {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
border: none;
}
#unity-fullscreen-button {
display: none !important;
visibility: hidden !important;
}
</style>
</head>
<body class="is-preload">
<section id="sidebar">
<div class="inner">
<nav>
<ul>
<li><a href="#intro">Zelda Recreation</a></li>
<li><a href="#one">About Zelda Recreation</a></li>
<li><a href="#bottleboy">Bottle Boy</a></li>
<li><a href="#two">About Bottle Boy</a></li>
<li><a href="#thirdgame">Third Game</a></li>
<li><a href="#three">About Third Game</a></li>
</ul>
</nav>
</div>
</section>
<div id="wrapper">
<!-- Project 1 -->
<section id="intro" class="wrapper style1 fullscreen fade-up">
<div class="inner">
<h1>Alexander White</h1>
<p>A public portfolio of my game design work.</p>
<div id="unity-fullscreen-button"></div>
<h2>Zelda Recreation</h2>
<div class="game-wrapper">
<iframe id="game-iframe" src="game.html" scrolling="no"></iframe>
</div>
<ul class="actions">
<li><a href="#one" class="button scrolly">Learn more</a></li>
</ul>
</div>
</section>
<!-- ABOUT ZELDA -->
<section id="one" class="wrapper style2 spotlights">
<section>
<a href="#" class="image">
<img src="images/pic01.png" alt="Zelda Recreation" data-position="center center" />
</a>
<div class="content">
<div class="inner">
<h2>About This Game</h2>
<p>
Me and my partner were tasked with recreating the NES classic
"The Legend of Zelda" in Unity. I worked both in the Unity editor
and inside many C# scripts for game objects.
</p>
</div>
</div>
</section>
</section>
<!-- Project 2 -->
<section id="bottleboy" class="wrapper style1 fullscreen fade-up">
<div class="inner">
<h2>Bottle Boy</h2>
<p>An original game by me built in Unity.</p>
<div class="game-wrapper">
<iframe id="bottleboy-iframe" src="BottleBoyWEB/game2.html" scrolling="no"></iframe>
</div>
<ul class="actions">
<li><a href="#two" class="button scrolly">Learn more</a></li>
</ul>
</div>
</section>
<!-- ABOUT BOTTLE BOY -->
<section id="two" class="wrapper style2 spotlights">
<section>
<a href="#" class="image">
<img src="images/pic07.jpg" alt="Bottle Boy" data-position="center center" />
</a>
<div class="content">
<div class="inner">
<h2>About This Game</h2>
<p>
In this game you play as Bottle Boy! You must explore around
, mastering the art of the water bottle flip as you traverse
dangerous obstacles. Don't run out of water or it's game over!
I built everything for this game myself in Unity.
</p>
</div>
</div>
</section>
</section>
<!-- Project 3 -->
<section id="thirdgame" class="wrapper style1 fullscreen fade-up">
<div class="inner">
<h2>Third Game</h2>
<p>An additional Unity project added to my portfolio.</p>
<div class="game-wrapper">
<iframe id="thirdgame-iframe" src="/P3WEB/game3.html" scrolling="no"></iframe>
</div>
<ul class="actions">
<li><a href="#three" class="button scrolly">Learn more</a></li>
</ul>
</div>
</section>
<!-- ABOUT THIRD GAME -->
<section id="three" class="wrapper style2 spotlights">
<section>
<a href="#" class="image">
<img src="images/pic08.jpg" alt="Third Game" data-position="center center" />
</a>
<div class="content">
<div class="inner">
<h2>About This Game</h2>
<p>
This project expands my Unity development experience, showcasing
additional mechanics, design decisions, and technical skills.
</p>
</div>
</div>
</section>
</section>
</div>
<footer id="footer" class="wrapper style1-alt">
<div class="inner">
<ul class="menu">
<li>© Alexander White. All rights reserved.</li>
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<!-- DPI Scaling Fix for all iframes -->
<script>
window.onload = function() {
document.querySelectorAll("iframe").forEach(function(iframe) {
if (iframe.contentWindow) {
iframe.contentWindow.devicePixelRatio = 1;
}
});
};
</script>
</body>
</html>