-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
222 lines (192 loc) · 7.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Lane's Me (Lane Allen)</title>
<meta name="author" content="Lane Allen">
<meta name="description" content="Lanes.me and LaneAllen.com starting area to my other projects and developments.">
<meta name="keywords" content="graphics, design, graphic design, character design, 3D, Zbrush, Blender, sound, Logic X, development, gamedev, indiedev, unreal engine, ue4, javascript, react, reactjs, ui, ux, vector, svg">
<meta name="p:domain_verify" content="2a09dbbc5fc8cf111ab83ccab167c932"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!--
Using cdn for now while developing.
TODO: Bundle with gulp and npm modules.
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.0/react.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.2/marked.min.js"></script>
//-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.7.2/jquery.fullPage.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.7.2/vendors/jquery.easings.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.7.2/vendors/jquery.slimscroll.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.7.2/jquery.fullPage.min.css" />
<!--
TODO:
I looked at semantic-ui, but I think I'm just going to go with a CSS-JS solution.
Maybe look at either Radium or PostCSS.
//-->
<style>
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin');
body {
margin: 0px;
padding: 0px;
overflow-x: hidden;
min-width: 320px;
background: #FFFFFF;
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
line-height: 1.4285em;
color: rgba(0, 0, 0, 0.87);
font-smoothing: antialiased;
}
/* Style for our header texts */
h1 {
font-size: 4em;
margin:0;
padding:0;
}
/* Centered texts in each section */
.section {
text-align:center;
}
/* Backgrounds will cover all the section */
.section {
background-position: center bottom;
background-repeat: no-repeat;
background-size: cover;
}
.slide {
background-size: cover;
}
/* Defining each section background and styles */
#section0 {
padding: 15% 0 0 0;
}
#section1 {
}
#section2 {
background-image: url(static/lane-newt.png);
padding: 6% 0 0 0;
}
#section3 {
background-image: url(static/stimulilab-irisfilo3.jpg);
padding: 6% 0 0 0;
}
#section3 h1 {
color: #FFF;
}
/*Adding background for the slides */
#slide1 {
background-image: url(static/trlolls-concept1.png);
padding: 6% 0 0 0;
}
#slide2 {
padding: 12% 0 0 0;
}
#slide3 {
background-color: #313131;
background-position: center bottom;
background-repeat: no-repeat;
background-size: auto;
}
.thread {
text-align: left;
padding: 6% 15% 0 15%;
}
svg path {
fill: white;
}
svg:hover path {
fill: #B79AFF;
}
.social-link {
padding: 1em;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('#content').fullpage({
scrollBar: true,
sectionsColor: ['#FFFFFF', '#DEE1E2', '#FFFFFF', '#292E37'],
verticalCentered: false
});
// Replace all SVG images with inline SVG
jQuery('img.svg').each(function(){
var $img = jQuery(this);
var imgID = $img.attr('id');
var imgClass = $img.attr('class');
var imgURL = $img.attr('src');
jQuery.get(imgURL, function(data) {
// Get the SVG tag, ignore the rest
var $svg = jQuery(data).find('svg');
// Add replaced image's ID to the new SVG
if(typeof imgID !== 'undefined') {
$svg = $svg.attr('id', imgID);
}
// Add replaced image's classes to the new SVG
if(typeof imgClass !== 'undefined') {
$svg = $svg.attr('class', imgClass+' replaced-svg');
}
// Remove any invalid XML tags as per http://validator.w3.org
$svg = $svg.removeAttr('xmlns:a');
// Replace image with new SVG
$img.replaceWith($svg);
});
});
});
</script>
</head>
<body>
<div id="content" class="pusher">
<div class="ui container section vertical masthead center aligned" id="section0">
<div class="intro center aligned column">
<img src="static/lane-scribbles.png" alt="Lane" />
</div>
</div>
<div class="section" id="section1">
<div class="slide" id="slide1">
<div class="ui container intro">
<h1>Projects</h1>
<p>
What I'm working on.
</p>
</div>
</div>
<div class="slide" id="slide2">
<img src="static/stimuli-logo-l.svg" width="30%" height="30%" />
</div>
<div class="slide" id="slide3">
<img src="static/aelyus-aru-progression1.jpg" width="90%"/>
</div>
</div>
<div class="ui container section" id="section2">
<div class="intro">
<h1>Who am I</h1>
<div class="thread">
<p>
I am a creative and geek. I've been pushing into game development; working with Unreal Engine 4, webgl/javascript, and VR. I am looking to push out some games in late 2015 or early 2016. I currently work as an indie, doing graphics, character development, 3D (Zbrush, Substance and Blender), sound (Logic X), and writing. I love researching comparative mythology, focusing on parallels all over the world, then referencing that with astronomy (my favorite book is "Star Names and Their Meanings (Allen)"). I'm a mixture of ENFP and INFP.
</p>
</div>
</div>
</div>
<div class="ui container section" id="section3">
<div class="intro">
<h1>You can find me in these places</h1>
<div class="thread">
<a href="https://twitter.com/laneallen"><img id="logo-twitter" class="svg social-link" src="static/svg/twitter.svg" /></a>
<a href="https://github.com/laneallen"><img id="logo-github" class="svg social-link" src="static/svg/github.svg" /></a>
<a href="https://soundcloud.com/laneallen"><img id="logo-soundcloud" class="svg social-link" src="static/svg/cloud.svg" /></a>
<a href="https://www.behance.net/laneallen"><img id="logo-behance" class="svg social-link" src="static/svg/behance.svg" /></a>
<a href="https://www.pinterest.com/lanesme/"><img id="logo-pinterest" class="svg social-link" src="static/svg/pinterest.svg" /></a>
<a href="https://instagram.com/lanesme/"><img id="logo-instagram" class="svg social-link" src="static/svg/camera.svg" /></a>
<a href="https://www.linkedin.com/in/laneallen"><img id="logo-linkedin" class="svg social-link" src="static/svg/linkedin.svg" /></a>
<a href="https://www.flickr.com/photos/laneallen"><img id="logo-flickr" class="svg social-link" src="static/svg/flickr.svg" /></a>
</div>
</div>
</div>
</div> <!-- End #content -->
<!--
TODO: Build with React.
<div id="content"></div>
<script src="app.js" type="text/babel"></script>
// -->
</body>
</html>