-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (116 loc) · 4.91 KB
/
index.html
File metadata and controls
140 lines (116 loc) · 4.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jackson Latka</title><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="css/main.css" media="all" rel="stylesheet">
<meta content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"
name="viewport">
<!-- Fixes the Mobile Safari auto-zoom bug: http://stackoverflow.com/questions/2557801/how-do-i-reset-the-scale-zoom-of-a-web-app-on-an-orientation-change-on-the-iphone -->
<script src="http://use.typekit.com/efn2nbf.js" type="text/javascript">
</script>
<script type="text/javascript">
try{Typekit.load();}catch(e){}
</script><!--iphone viwport control-->
<meta content="width = device-width" name="viewport">
<meta content="initial-scale = 1.0" name="viewport">
<meta content="initial-scale = 2.3, user-scalable = no" name="viewport">
<!--hide address bar on iPhone-->
<meta content="yes" name="apple-mobile-web-app-capable"><!--fancybox-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"
type="text/javascript">
</script>
<script src="/fancybox/jquery.fancybox-1.3.4.pack.js" type="text/javascript">
</script>
<link href="/fancybox/jquery.fancybox-1.3.4.css" media="screen" rel=
"stylesheet" type="text/css">
<script type="text/javascript">
$(document).ready(function() {
$(".fancybox").fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'speedIn' : 400,
'speedOut' : 200,
'overlayShow' : false,
'type' : "iframe",
'height': 455,
'width': 480
});
$("#toggleDiv").hide();
$("#triggerBtn").click(function(){
$("#toggleDiv").fadeToggle(500);
});
});
</script><!--Analytics-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-27571833-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="top-shadow-box">
</div>
<div id="wrapper">
<p><span class="hello">Hello. I'm Jackson Latka.</span>
</p>
<div id="fade">
I have lots of ideas; some of which are better than others. I live, design,
and create <a href="http://makenew.co" target="blank">things I care
about</a> in Burlington, Vermont, at a <a href=
"http://www.studyhall.space" target="blank">well-lit work club</a>,
near a big lake. I have a fantastic wife</a>, two great sons, and a smallish <a class="fancybox"
href=
"http://player.vimeo.com/video/182187?title=0&byline=0&portrait=0&autoplay=1&loop=1">
yellow lab</a>. I love most everything about the web and new technologies,
though I feel guilty about where my previous electronic devices will
eventually end up. I have brown hair, blue eyes, and <a class="fancybox"
href="http://www.jacksonlatka.com/jackson_faces.mp4">change my look</a>
enough to confuse people. The best way to reach me is on <a href=
"http://www.twitter.com/jacksonlatka" target="blank">Twitter</a> or using
the "Say hello" button below.
</div>
<!--#fade-->
<section id="info">
<a class="chat" href="mailto:jacksonlatka+site@gmail.com" title=
"Email Jackson">Say hello</a>
<h2><a href="#" id="triggerBtn">Elsewhere<span>(click to reveal/hide other
sites)</span></a>
</h2>
<div id="toggleDiv">
<ul id="social">
<li>
<a class="sprite-twitter" href="http://www.twitter.com/jacksonlatka"
target="_blank">Twitter</a>
</li>
<li>
<a class="sprite-dribbble" href="http://www.dribbble.com/jacksonlatka"
target="_blank">Dribbble</a>
</li>
<li>
<a class="sprite-linkedin" href="http://www.linkedin.com/in/jacksonlatka"
target="_blank">LinkedIn</a>
</li>
</ul>
</div>
</section>
</div>
<script type="text/javascript">
$(document).ready(function() {
$(".hello").css("display", "none");
$(".hello").fadeIn(1000);
$("#fade").css("display", "none");
$("#fade").delay(2000).fadeIn(1000);
$("#info").css("display", "none");
$("#info").delay(4000).fadeIn(2000);
});
</script>
</body>
</html>