forked from AlphaGoHack/NasaSpaceHost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.php
70 lines (62 loc) · 1.98 KB
/
homepage.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
<?php include'head.php';?>
<head>
<title>Welcome</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style>
<?php include'css/load.css'?>
.image{
width:50%;
}
.container {
height: 100%;
text-align: center;
font: 0/0 a;
}
.container:before {
content: ' ';
display: inline-block;
vertical-align: middle;
height: 100%;
}
#element {
display: inline-block;
vertical-align: middle;
font: 16px/1 Arial sans-serif;
}
</style>
<body>
<div class="pageLoad">
<div class="inner">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="container">
<div id="element">
<img src="nasa.png" class="image">
</div>
</div>
</body>
<script>
setTimeout(function() {
$('.inner div').addClass('done');
setTimeout(function() {
window.location='login.php';
},1499);
setTimeout(function() {
$('.inner div').addClass('page');
setTimeout(function() {
$('.pageLoad').addClass('off');
$('body, html').addClass('on');
}, 500)
}, 500)
}, 1500)
</script>
</html>