-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimista.css
More file actions
34 lines (33 loc) · 971 Bytes
/
animista.css
File metadata and controls
34 lines (33 loc) · 971 Bytes
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
/* ----------------------------------------------
* Generated by Animista on 2018-3-23 22:52:7
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
.flip-vertical-right {
-webkit-animation: flip-vertical-right 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
animation: flip-vertical-right 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
/**
* ----------------------------------------
* animation flip-vertical-right
* ----------------------------------------
*/
@-webkit-keyframes flip-vertical-right {
0% {
-webkit-transform: rotateY(0);
transform: rotateY(0);
}
100% {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
}
@keyframes flip-vertical-right {
0% {
-webkit-transform: rotateY(0);
transform: rotateY(0);
}
100% {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
}