-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (104 loc) · 3.8 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
<!doctype html>
<html>
<head>
<title>Jules BOUSSEKEYT</title>
<link rel="stylesheet" href="style.css?version=3">
<link rel="shortcut icon" href="favicon.ico">
<meta charset="utf-8">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
</head>
<body>
<div class="root">
<header class="header">
<div class="header-rotated">
<div class="header-geometry-top"> </div>
<div class="header-geometry-right"> </div>
</div>
</header>
<main class="index">
<img src="moi.jpg" class="picture-me" alt="Jules Boussekeyt">
<p>
Hello, it's Jules Boussekeyt, I am a JavaScript/CSS/HTML developper.
<blockquote>
I have keen interest in Javascript applications and beautiful user interfaces.
I love to learn and build great products.
</blockquote>
</p>
<!--
<p>
I'm currently looking for exclusive, full-time work with a team.
</p>
-->
<!--
<p>
<code>Javascript, React, Angular, Backbone, Symfony2, CSS, Vim</code>
</p>
-->
<p>
<!--
<a href="/resume.pdf">Resume</a> -
<a href="recommendations.png">Recommendations</a> -
-->
<a class="liame"></a>
</p>
<h2>clients</h2>
<ul class="horizontal">
<li><a target="_blank" href="http://crath.com">Crath</a></li>
<li><a target="_blank" href="http://www.everlution.com">Everlution</a></li>
<li><a target="_blank" href="https://marketcolor.co">Marketcolor</a></li>
<li><a target="_blank" href="https://graphcomment.com">SemioLogic</a></li>
<li><a target="_blank" href="http://sensiolabs.com">SensioLabs</a></li>
<li><a target="_blank" href="http://www.sparkcentral.com">Sparkcentral</a></li>
<li><a target="_blank" href="http://staffmatch.com">StaffMatch</a></li>
<li><a target="_blank" href="http://startersquad.com">StarterSquad</a></li>
<li><a target="_blank" href="http://wisembly.com">Wisembly</a></li>
</ul>
<!--
<h2>writting</h2>
<ul class="vertical">
<li><a href="/article-1.html">Méthodologie de la morale</a> <small>(french)</small></li>
</ul>
-->
<!--
<h2>projects</h2>
<ul class="horizontal">
<li><a href="https://check-it.io">Check It</a></li>
<li><a href="https://julesbou.github.io/game-of-life/" data-action="transition-page-right">Conway's game of life</a></li>
<li><a href="https://julesbou.github.io/css-animations/" data-action="transition-page-top">Relaxing CSS animations</a></li>
</ul>
-->
<h2>elsewhere</h2>
<ul class="horizontal">
<li><a href="https://github.com/julesbou">Github</a></li>
<li><a href="https://twitter.com/julesbou">Twitter</a></li>
<li><a href="https://medium.com/@julesbou">Blog</a></li>
<!--<li><a href="http://codepen.io/julesbou/">Codepen</a></li>-->
<!--<li><a href="https://www.deezer.com/fr/profile/2267900664/loved">Deezer</a></li>-->
</ul>
</main>
<script>
window.onload = function() {
var liame = ['jules', 'boussekeyt@gmail', 'com'].join('.')
var liameEl = document.querySelector('.liame')
liameEl.textContent = liame
liameEl.href = 'mailto:' + liame
}
document.querySelector('[data-action="transition-page-right"]').addEventListener('click', function(event) {
event.preventDefault()
document.querySelector('.header').classList.add('transition-right')
setTimeout(function() {
window.location.href = event.target.href
}, 600)
})
document.querySelector('[data-action="transition-page-top"]').addEventListener('click', function(event) {
event.preventDefault()
document.querySelector('.header').classList.add('transition-top')
setTimeout(function() {
window.location.href = event.target.href
}, 800)
})
</script>
</div>
</body>
</html>