-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (88 loc) · 3.35 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
<!DOCTYPE html>
<head xmlns="http://www.w3.org/1999/html">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Laith's Site </title>
<meta name="description" content="">
<link rel="stylesheet" href="css/laith_style.css">
<link rel="stylesheet" href="css/navi.css">
<link rel="stylesheet" href="css/social.css">
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'http://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-40515102-1', 'laithnurie.me');
ga('send', 'pageview');
function goToByScroll(id) {
$('html,body').animate({scrollTop:$(id).offset().top - 100}, 'slow');
}
$(document).ready(function () {
$('.navigation a').click(function () {
goToByScroll($(this).attr('href'));
return false;
});
});
</script>
<script src="js/bubbles.js" type="text/javascript"></script>
</head>
<body>
<div id="canvas-wrap">
<canvas></canvas>
<!--<div class="navigation">-->
<!--<a href="#android">-->
<!--<div class="green">-->
<!--<h2>Android</h2>-->
<!--<p>Welcome to UI Punch</p>-->
<!--</div>-->
<!--</a>-->
<!--<a href="#cool">-->
<!--<div class="blue">-->
<!--<h2>Cool</h2>-->
<!--<p>Welcome to UI Punch</p>-->
<!--</div>-->
<!--</a>-->
<!--<a href="#music">-->
<!--<div class="red">-->
<!--<h2>Home</h2>-->
<!--<p>Welcome to UI Punch</p>-->
<!--</div>-->
<!--</a>-->
<!--<a href="#videogames">-->
<!--<div class="yellow">-->
<!--<h2>Home</h2>-->
<!--<p>Welcome to UI Punch</p>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<div class="overlay">
<div id="android" class="android"></div>
<div id="cool" class="cool"></div>
<div id="music" class="music"></div>
<div id="videogames" class="videogames"></div>
</div>
<div id="contact-me">
<div id="wrapper">
<div class="social">
<ul>
<a href="https://twitter.com/laith_nurie"><li class="twitter"></li></a>
<a href="https://facebook.com/hewhoprotects"><li class="facebook"></li></a>
<a href="https://plus.google.com/u/0/107039890294603303988"><li class="gplus"></li></a>
<a href="http://www.linkedin.com/profile/view?id=90195382"><li class="linkedin"></li></a>
<a href="https://github.com/laithnurie"><li class="github"></li></li></a>
<a id="arrow"></a>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>