-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
GUI_logo.css
114 lines (108 loc) · 2.61 KB
/
GUI_logo.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#logo_animation {
position: relative;
width: 100px;
height: 100px;
perspective: 600px;
margin: auto;
margin-top: 50px;
margin-bottom: 20px;
}
#logo_animation .box_animation {
/* position:absolute;
top:0;
bottom:0;
left:0;
right:0;
margin:auto; */
transition: all 800ms ease;
}
#logo_animation img {
width:100%;
}
#logo_animation .box_animation.inner.rotated {
transform: rotateY(180deg) rotateZ(45deg);
transition: all 800ms ease;
}
#logo_animation .box_animation.inner.rotated2 {
transform: rotateY(-180deg) rotateZ(-45deg);
transition: all 800ms ease;
}
#logo_animation .box_animation.inner.rotated3 {
transform: rotateY(180deg) rotateZ(90deg);
transition: all 800ms ease;
}
#logo_animation .box_animation.inner.rotated4 {
transform: rotateY(-180deg) rotateZ(-90deg);
transition: all 800ms ease;
}
#logo_animation .box_animation.inner.rotated5 {
transform: rotate(180deg);
transition: all 800ms ease;
}
#logo_animation .box_animation.inner.rotated6 {
transform: rotate(-180deg);
transition: all 800ms ease;
}
#logo_animation .box_animation.outer.rotated {
transform: translateX(30%);
transition: all 800ms ease;
}
#logo_animation .box_animation.outer.rotated2 {
transform: translateX(-30%);
transition: all 800ms ease;
}
#logo_animation .box_animation.outer.rotated3 {
transform: translateX(30%);
transition: all 800ms ease;
}
#logo_animation .box_animation.outer.rotated4 {
transform: translateX(-30%);
transition: all 800ms ease;
}
#logo_animation .box_animation.outer.rotated5 {
transform: translateX(30%);
transition: all 800ms ease;
}
#logo_animation .box_animation.outer.rotated6 {
transform: translateX(-30%);
transition: all 800ms ease;
}
.bounce {
animation-name: bounce;
animation-duration: .8s;
animation-delay: 0.35s;
}
@keyframes bounce {
0% {
transform: translateX(0px);
timing-function: ease-in;
}
37% {
transform: translateX(12px);
timing-function: ease-out;
}
55% {
transform: translateX(-12px);
timing-function: ease-in;
}
73% {
transform: translateX(8px);
timing-function: ease-out;
}
82% {
transform: translateX(-8px);
timing-function: ease-in;
}
91% {
transform: translateX(6px);
timing-function: ease-out;
}
96% {
transform: translateX(-6px);
timing-function: ease-in;
}
100% {
transform: translateX(0px);
timing-function: ease-in;
}
}