building.html
1.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="https://app.ixiulive.com/static/css/reset2.css" />
<link rel="stylesheet" href="https://app.ixiulive.com/static/css/common.css" />
<style>
.container {
width: 100vw;
height: 100vh;
position: relative;
background: url(./img/code.gif) no-repeat;
background-size: cover;
/* background-size: contain;
background-position: center; */
}
h1 {
position: absolute;
left: 0;
top: 40vh;
font-size: 40px;
text-align: center;
width: 100%;
color: #ff0000;
font-weight: bolder;
animation: goin 2s;
text-shadow: 0 0 10px #ff0000;
}
.noteInfo {
position: absolute;
left: 0;
bottom: 10vh;
text-align: center;
width: 100%;
font-size: 28px;
color: #fff;
}
@keyframes goin {
0%{
opacity: 0;
top: 38vh;
}
50%{
top: 41vh
}
100%{
opacity: 1;
top: 40vh;
}
}
</style>
</head>
<body>
<div class="container">
<h1> The site is under construction!</h1>
<div class="noteInfo">Meet Live Technology Co.,Ltd</div>
</div>
</body>
</html>