-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
90 lines (80 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D 3 C R Y P T</title>
<meta name="description" content="D3CRYPT, online event condcted by IEEE SBM.">
<meta name="author" content="IEEE - SBM" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="temp/assets/css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="temp/assets/js/randtext.js"></script>
<style type="text/css">
body , #particles-js {
width: 100%;
height: 100%;
color: #fff;
background: linear-gradient(-45deg, #000000, #3A3B3A, #0D1B5C, #020933);
background-size: 400% 400%;
-webkit-animation: Gradient 15s ease infinite;
-moz-animation: Gradient 15s ease infinite;
animation: Gradient 15s ease infinite;
z-index: 10;
}
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
</style>
</head>
<body>
<!-- particles.js container -->
<div style="position: relative;" id="particles-js">
<button class="button button1" id="Enter"></button>
<script type="text/javascript">
randtext(Enter,100);
setInterval(randtext,4000,Enter,100);
</script>
<div style="padding: 10px; padding-top: 40px; font-size: 35px">
<center>
<p>Event is over</p>
<p>We'll be back soon.</p>
</center>
</div>
</div>
<!-- scripts -->
<script src="temp/assets/js/particles.min.js"></script>
<script src="temp/assets/js/app.js"></script>
</body>
</html>