-
Notifications
You must be signed in to change notification settings - Fork 0
/
multisteps.css
88 lines (86 loc) · 1.85 KB
/
multisteps.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
.multisteps {
-o-transition: height 0.5s;
-moz-transition: height 0.5s;
-webkit-transition: height 0.5s;
transition: height 0.5s;
width: 100%;
white-space: nowrap;
overflow: visible;
}
.multisteps.horizontal {
overflow-x: hidden;
}
.multisteps.vertical {
overflow-y: hidden;
}
.multisteps .step {
width: 100%;
display: none;
-o-animation-duration: 0.5s;
-moz-animation-duration: 0.5s;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
}
.multisteps .step.preparing {
visibility: hidden;
}
.multisteps .step.active {
display: block;
}
.multisteps .animated {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
/* As provided by animate.css. Feel free to get some animations from over there. */
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.multisteps .fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.multisteps .fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}