PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.10
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.10
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.10, at css/admin/animations.css

96 lines 1.7 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 /* cascadeFadeIn */
20 .frm-init-cascade-animation {
21 transform: translateY( 0px );
22 opacity: 1.0 !important;
23 transition: 0.35s transform, 0.35s opacity linear;
24 will-change: transform;
25 }
26 .frm-init-cascade-animation > * {
27 transition: 0.3s opacity linear;
28 transition-delay: 0.1s;
29 }
30 .frm-init-cascade-animation.frm-animate {
31 transform: translateY( 7px );
32 opacity: 0.0 !important;
33 }
34 .frm-init-cascade-animation.frm-animate > * {
35 opacity: 0.0;
36 }
37 /* End cascadeFadeIn */
38
39 /* FadeIn 3d */
40 .frm-init-fadein-3d.frm-animate {
41 opacity:0.0!important;
42 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 );
43 }
44 .frm-init-fadein-3d {
45 opacity:1!important;
46 transform: matrix3d( 1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1 ) translateY( 0px ) scale3d( 1, 1, 1 );
47 transition: 0.35s transform, 0.5s opacity linear;
48 }
49 /* END FadeIn 3d */
50
51 @keyframes fadeIn {
52 0% {
53 opacity: 0;
54 }
55
56 100% {
57 opacity: 1;
58 }
59 }
60
61 @keyframes fadeInUp {
62 0% {
63 opacity: 0;
64 transform: translateY(10px);
65 }
66
67 100% {
68 opacity: 1;
69 transform: translateY(0);
70 }
71 }
72
73 @keyframes fadeInUpBack {
74 0% {
75 opacity: 0;
76 transform: translateY(32px);
77 }
78
79 100% {
80 opacity: 1;
81 transform: translateY(0);
82 }
83 }
84
85 @keyframes fadeInDownShort {
86 0% {
87 opacity: 0.4;
88 transform: translateY(-2px);
89 }
90
91 100% {
92 opacity: 1;
93 transform: translateY(0);
94 }
95 }
96