PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.6
Booking for Appointments and Events Calendar – Amelia v2.4.6
2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / src / assets / scss / common / animations / animations.scss
ameliabooking / v3 / src / assets / scss / common / animations Last commit date
animations.scss 1 month ago
animations.scss
66 lines
1 @keyframes am-animation-slide-up {
2 0% {
3 transform: translate3d(0, 40px, 0);
4 opacity: 0;
5 }
6 75% {
7 transform: translate3d(0, -5px, 0);
8 opacity: 0.7;
9 }
10 100% {
11 transform: translate3d(0, 0, 0);
12 opacity: 1;
13 }
14 }
15
16 @keyframes am-animation-slide-right {
17 0% {
18 transform: translate3d(-40px, 0, 0);
19 opacity: 0;
20 }
21 75% {
22 transform: translate3d(5px, 0, 0);
23 opacity: 0.7;
24 }
25 100% {
26 transform: translate3d(0, 0, 0);
27 opacity: 1;
28 }
29 }
30
31 /*@keyframes am-animation-collapse-open {
32 0%{max-height: 0;}
33 100%{max-height: fit-content;}
34 }
35
36 @keyframes am-animation-collapse-close {
37 0%{max-height: fit-content;}
38 100%{max-height: 0; display: none;}
39 }*/
40
41 @keyframes sidebar-step-check-state {
42 0% {
43 transform: scale(0);
44 }
45 50% {
46 transform: scale(1.2);
47 }
48 100% {
49 transform: scale(1);
50 }
51 }
52
53 @keyframes sidebar-step-selection {
54 0% {
55 opacity: 0;
56 transform: translateX(-100%);
57 }
58 50% {
59 transform: translateX(10%);
60 }
61 100% {
62 opacity: 1;
63 transform: translateX(0);
64 }
65 }
66