This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (89 loc) · 2.07 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
91
<html>
<head>
<title>DremJS Market</title>
<embed src="load.mp3" width="0" height="0" loop="true" autostart="true" hidden="true" />
<meta http-equiv="refresh" content="10;URL='index-shop.html'" />
<style>
.box-blue {
margin:0 0 25px;
overflow:hidden;
padding:0px;
background-color:#FFFFFF;
border:1px solid #8b8b8b;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.box-blue-emb {
margin:0 0 25px;
overflow:hidden;
padding:25px;
background-color:#009ac7;
-webkit-border-radius: 5px;
border-radius: 5px;
height: 10px;
}
.rel-uemb {
position: relative;
left: 25px;
}
.rel-emb {
position: absolute;
top: 2px;
}
.cwhite {
color: #FFFFFF;
}
html, body, #wrapper {
height:100%;
width: 100%;
margin: 0;
padding: 0;
border: 0;
}
#wrapper td {
vertical-align: middle;
text-align: center;
}
.img{
transform-origin:50% 50%;
}
@keyframes rotateRight{
100%{ transform:rotate(360deg); }
}
.br {
position: absolute;
bottom: 0px;
right: 2px;
}
.truecenter {
position: fixed;
top: 50%;
left: 50%;
line-height: 90px;
text-align: center;
margin-top: -50px;
margin-left: -100px;
}
</style>
</head>
<body>
<script>
var current= new Date();
var month=current.getMonth();
var date=current.getDate();
function loadImage(image) {
var x = document.createElement("IMG");
x.setAttribute("src", image);
x.setAttribute("class", "truecenter");
document.body.appendChild(x);
}
if (month=="3" && date=="13") {
loadImage("gate.gif");
} else {
loadImage("load.gif");
}
</script>
<p class="br">v0.1.4</p>
</body>
</html>
<!-- animation:1.5s rotateRight infinite linear; -->