-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (78 loc) · 2.9 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Joseph Crosland</title>
<link rel="shortcut icon" href="favicon.png" type="image/png">
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="javascripts/jquery-1.11.1.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script>
$("document").ready(function() {
jQuery.fn.flasher = function(show_it) {
// Flasher is infinate loop and should be if you consider
// the notion of flashing!
if (show_it == 0) {
this.animate({ opacity: show_it }, 300, function() {
$(this).flasher(1);
});
} else if (show_it == 1) {
this.animate({ opacity: show_it }, 300, function() {
$(this).flasher(0);
});
} else {
return this;
}
return this;
};
$("a").focus(function() {
// Only took me about 2 hours to find block cursor unicode character
// :/
$(this).parent().append("<span class='flash'>∎</span>")
this.style.outline = null;
$(this).next("span").show();
$(this).next("span").flasher(1);
});
$("a").focusout(function() {
$( ".flash" ).remove();
});
});
</script>
</head>
<body>
<div class="wrapper">
<!--[if IE]>
<h1 style="color:#FFFFFF;">Sorry, I do not support Internet Explorer</h1>
<![endif]-->
<header>
<h1 id="name">Joseph Crosland</h1>
<p class="view">
<a id="github" tabindex='1' href="https://github.com/crozzy">GitHub</a>
</p>
<p class="view">
<a href="https://twitter.com/joseph_crozzy">Twitter</a>
</p>
<p class="view">
<a href="https://docs.google.com/document/d/1oDRCreN9mlzMreRTfYp8l5bFCIaY_VbEihcJ48GOF0g/preview?pli=1">Resume</a>
</p>
<p class="view">
<a href="https://www.linkedin.com/pub/joseph-crosland/1b/a61/459">LinkedIn</a>
</p>
<p class="view">
<a href="mailto:[email protected]">[email protected]</a>
</p>
</header>
<section>
<h3>
<p></p>
<h3>Summary</h3>
<p>I like looking and understanding how things work, putting them back together, improving them and building new things.</p>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>