PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.24
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.24
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / css / admin / animations.css

animations.css in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.24, at css/admin/animations.css

124 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* fadeIn */
2 .frm-fadein {
3 animation: fadeIn 400ms ease-in-out forwards;
4 }
5
6 .frm-fadein-up {
7 animation: fadeInUp 230ms ease-in-out forwards;
8 }
9
10 .frm-fadein-up-back {
11 animation: fadeInUpBack 500ms cubic-bezier( 0.34, 1.56, 0.64, 1 ) forwards;
12 }
13
14 .frm-fadein-down-short {
15 animation: fadeInDownShort 300ms ease-out forwards;
16 }
17 /* END fadeIn */
18
19 /* slide down */
20 .frm-slide-down,
21 .frm-collapse-me {
22 animation: slideDown var(--slide-time, 2000ms) cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
23 }
24 /* END slide down */
25
26 /* cascadeFadeIn */
27 .frm-init-cascade-animation {
28 transform: translateY( 0px );
29 opacity: 1.0 !important;
30 transition: 0.35s transform, 0.35s opacity linear;
31 will-change: transform;
32 }
33 .frm-init-cascade-animation > * {
34 transition: 0.3s opacity linear;
35 transition-delay: 0.1s;
36 }
37 .frm-init-cascade-animation.frm-animate {
38 transform: translateY( 7px );
39 opacity: 0.0 !important;
40 }
41 .frm-init-cascade-animation.frm-animate > * {
42 opacity: 0.0;
43 }
44 /* End cascadeFadeIn */
45
46 /* FadeIn 3d */
47 .frm-init-fadein-3d.frm-animate {
48 opacity:0.0!important;
49 transform: matrix3d( 1,0,0,0,0,1,0,-0.00095,0,0,1,0,0,0,0,1 ) translateY( 15px ) scale3d( 0.92, 0.92, 1 );
50 }
51 .frm-init-fadein-3d {
52 opacity:1!important;
53 transform: matrix3d( 1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1 ) translateY( 0px ) scale3d( 1, 1, 1 );
54 transition: 0.35s transform, 0.5s opacity linear;
55 }
56 /* END FadeIn 3d */
57
58 @keyframes fadeIn {
59 0% {
60 opacity: 0;
61 }
62
63 100% {
64 opacity: 1;
65 }
66 }
67
68 @keyframes fadeInUp {
69 0% {
70 opacity: 0;
71 transform: translateY(10px);
72 }
73
74 100% {
75 opacity: 1;
76 transform: translateY(0);
77 }
78 }
79
80 @keyframes fadeInUpBack {
81 0% {
82 opacity: 0;
83 transform: translateY(32px);
84 }
85
86 100% {
87 opacity: 1;
88 transform: translateY(0);
89 }
90 }
91
92 @keyframes fadeInDownShort {
93 0% {
94 opacity: 0.4;
95 transform: translateY(-2px);
96 }
97
98 100% {
99 opacity: 1;
100 transform: translateY(0);
101 }
102 }
103
104 @keyframes slideDown {
105 0% {
106 max-height: 0;
107 opacity: 0;
108 overflow: hidden;
109 }
110
111 25% {
112 opacity: 1;
113 }
114
115 99% {
116 max-height: var(--slide-height, 10000px);
117 overflow: visible;
118 }
119
120 100% {
121 max-height: none;
122 }
123 }
124