-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (54 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rodolphe Kouyoumdjian</title>
<link rel="icon" href="rk-black.png" type="image/png">
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="./noise.css">
<link rel="stylesheet" href="./cursor/cursor.css">
</head>
<body onload="init();">
<div class="bg"></div>
<div class="cursor">
<div class="cursor__ball cursor__ball--big ">
<svg height="30" width="30">
<circle cx="50%" cy="50%" r="50%" stroke-width="0"></circle>
</svg>
</div>
<div class="cursor__ball cursor__ball--small">
<svg height="10" width="10">
<circle cx="50%" cy="50%" r="50%" stroke-width="0"></circle>
</svg>
</div>
</div>
<div class="page">
<h1>
Rodolphe<br>Kouyoumdjian
</h1>
<h2>
Developer & Student
</h2>
<div class="main">
<a href="#bottom" id="bottom-back"></a>
<a href="#" class="category" id="title-1"></a>
<p class="info" id="p-1"></p>
<a href="#" class="category" id="title-2"></a>
<p class="info" id="p-2"></p>
<a href="#" class="category" id="title-3"></a>
<p class="info" id="p-3"></p>
<a href="#" class="category" id="title-4"></a>
<p class="info" id="p-4"></p>
<a href="#" class="category" id="title-5"></a>
<p class="info" id="p-5"></p>
<a href="#" class="category" id="title-6"></a>
<p class="info" id="p-6"></p>
<div id="bottom"></div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/TweenMax.min.js'></script>
<script src="./cursor/cursor.js"></script>
<script src="./script.js"></script>
<script src="./init.js"></script>
</body>
</html>