-
Notifications
You must be signed in to change notification settings - Fork 1
/
intro.css
73 lines (64 loc) · 1.16 KB
/
intro.css
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
#main {
background-image: url('full.png');
animation: main 1.5s ease 0s 1 normal forwards;
}
@keyframes main {
0% {
opacity: 0;
}
90% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.floating-panel {
position: absolute;
width: 1000px;
height: 666px;
top: 0px;
left: 0px;
background-repeat: no-repeat;
}
#bottom {
background-image: url('bottom.png');
animation: bottom 1.5s ease 0s 1 normal forwards;
z-index: 0;
}
@keyframes bottom {
0% {
background-position-x: -1000px;
}
100% {
background-position-x: 0px;
}
}
#hotel {
background-image: url('hotel.png');
animation: hotel 1.5s ease 0s 1 normal forwards;
z-index: 2;
transform: scale(1.01);
transform-origin: 50% 20%;
}
@keyframes hotel {
0% {
background-position-y: -700px;
}
100% {
background-position-y: 0px;
}
}
#top {
background-image: url('top.png');
animation: top 1.5s ease 0s 1 normal forwards;
z-index: 1;
}
@keyframes top {
0% {
background-position-x: 1000px;
}
100% {
background-position-x: 0px;
}
}