-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (43 loc) · 968 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Preloader</title>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0">
</head>
<body class="pre-logo" onload="animateDiv()">
<div class="bg">
<div id='popup' class="popup-container"></div>
</div>
<style>
body {
background: rgb(36, 34, 34);
}
.bg {
width: 70%;
height: 50vh;
margin: 100px;
background: rgb(36, 34, 34) url("img/LOGOTD.png") no-repeat center center;
background-size: contain;
}
.pre-logo {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.popup-container {
width: 100%;
height: 100%;
background-color: black;
border: 2px solid black;
position: absolute;
left: 0%;
top: 100%;
bottom: 0;
transition: 1s;
}
</style>
<script type="text/javascript" src="js/preloader.js"></script>
</body>
</html>