-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (116 loc) · 4.57 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/6bd76291e3.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="warpspeed.min.js"></script>
<title>Anthonyeca</title>
</head>
<body>
<!--HEADER -->
<header>
<a href="https://anthonyeca.github.io" id="logo"> AnthonyECA</a>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<ul>
<li><a href="https://anthonyeca.github.io/projects/">Projects</a></li>
<li><a href="https://anthonyeca.github.io/about-me/">About me</a></li>
<li><a href="https://github.com/anthonyeca" target="_blank">Repository</a></li>
</ul>
</nav>
</header>
<!-- CONTENIDO -->
<div class="caja">
<div class="card card1">
<div class="face face1">
<div class="content">
<i class="far fa-user-circle"></i>
<h3>About me</h3>
</div>
</div>
<div class="face face2">
<div class="content">
<p>Hello, my name is Anthony. I'm learing how to code and figure out how to do some programming
magic tricks.</p>
<a href="https://anthonyeca.github.io/about-me/">About me</a>
</div>
</div>
</div>
<div class="card card2">
<div class="face face1">
<div class="content">
<i class="fas fa-laptop-code"></i>
<h3>Projects</h3>
</div>
</div>
<div class="face face2">
<div class="content">
<p>Here you can find my projects what I have done before.</p>
<a href="https://anthonyeca.github.io/projects">Go</a>
</div>
</div>
</div>
<!--
<div class="card card3">
<div class="face face1">
<div class="content">
<i class="fas fa-laptop-code"></i>
<h3>Repository</h3>
</div>
</div>
<div class="face face2">
<div class="content">
<p>Here you can find my social media </p>
<a href="https://github.com/anthonyeca">Go</a>
</div>
</div>
</div>
-->
</div>
<!-- INTRO TEXT
<div class="intro">
<div class="intro-text">
<h1 class="hide">
<span class="text">Welcome</span>
</h1>
<h1 class="hide">
<span class="text">To my</span>
</h1>
<h1 class="hide">
<span class="text">Website</span>
</h1>
</div>
</div>
-->
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.5.1/gsap.min.js"
integrity="sha512-IQLehpLoVS4fNzl7IfH8Iowfm5+RiMGtHykgZJl9AWMgqx0AmJ6cRWcB+GaGVtIsnC4voMfm8f2vwtY+6oPjpQ=="
crossorigin="anonymous">
</script>
<script src="app.js"></script>-->
<canvas id="canvas" style="position:fixed; top:0; left:0; width:100%; height:100%;"></canvas>
<script type="text/javascript">
var x = new WarpSpeed("canvas", { "speed": 1.3, "speedAdjFactor": 0.07, "density": 1.9, "shape": "circle", "warpEffect": true, "warpEffectLength": 5, "depthFade": true, "starSize": 3, "backgroundColor": "hsl(225, 25%, 13%)", "starColor": "#FFFFFF" });
var gamer = [103, 97, 109, 101, 114].join(),
$div = $('div');
$(window).on('keypress', function (e) {
var $this = $(this),
gap = e.timeStamp - ($this.data('time') || e.timeStamp),
chars = $this.data('chars') || [];
if (gap > 1000) {
chars = [];
}
chars.push(e.which);
if (chars.join() === gamer) {
window.open("https://anthonyeca.github.io/secret", '_blank');
}
$this.data('chars', chars);
$this.data('time', e.timeStamp);
});</script>
</body>
</html>