-
Notifications
You must be signed in to change notification settings - Fork 0
/
matrix.html
60 lines (51 loc) Β· 1.22 KB
/
matrix.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
<!DOCTYPE html>
<html>
<head>
<!-- <link rel="stylesheet" href="css/style.css" /> -->
<link rel="stylesheet" href="css/aos.css" />
<title>Efeito de Matriz</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
overflow: hidden;
position: relative;
height: 100vh;
font-family: Arial, sans-serif;
}
#matrix-canvas {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.content {
position: relative;
z-index: 1;
padding: 20px;
color: #ffffff;
font-weight: bold;
background-color: #0000003f;
text-align: center;
padding-top: 20vh;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
}
</style>
</head>
<body>
<canvas id="matrix-canvas"></canvas>
<div class="content">
<h1>Matrix</h1>
<p>I can only show you the door. You're the one that has to walk through it....</p>
</div>
<script src="matrix-effect.js"></script>
</body>
</html>