-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
74 lines (63 loc) · 1.33 KB
/
index.php
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
<!DOCTYPE html>
<html>
<?php include 'head.php'; ?>
<body class="body">
<div class="logo">
<img src="img/logo2.png" alt="">
</div>
<div class="bg">
<div class="layer"></div>
</div>
<script type="text/javascript">
window.setTimeout(function () {
location.href = "loading.php";
}, 5000);
</script>
</body>
</html>
<style>
*{
box-sizing: border-box;
}
.body{
position: relative;
top: 0;
bottom: 0;
left: 0;
right: 0;
min-height: 100vh;
}
.logo{
position: absolute;
top: 40%;
width: 100%;
z-index: 10;
}
.logo img{
margin-left: auto;
display: block;
margin-right: auto;
height: auto;
width: 60vw;
}
.bg{
z-index: 0;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-image: url("img/joinville.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.layer{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(62, 168, 244, .8);
}
</style>