PluginProbe
Elementor Website Builder – more than just a page builder / 3.24.3
Elementor Website Builder – more than just a page builder v3.24.3
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / assets / lib / animations / styles / bounceIn.css

bounceIn.css in Elementor Website Builder – more than just a page builder 3.24.3, at assets/lib/animations/styles/bounceIn.css

35 lines 493 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @keyframes bounceIn {
2 20%,
3 40%,
4 60%,
5 80%,
6 from,
7 to {
8 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
9 }
10 0% {
11 opacity: 0;
12 transform: scale3d(0.3, 0.3, 0.3);
13 }
14 20% {
15 transform: scale3d(1.1, 1.1, 1.1);
16 }
17 40% {
18 transform: scale3d(0.9, 0.9, 0.9);
19 }
20 60% {
21 opacity: 1;
22 transform: scale3d(1.03, 1.03, 1.03);
23 }
24 80% {
25 transform: scale3d(0.97, 0.97, 0.97);
26 }
27 to {
28 opacity: 1;
29 transform: scale3d(1, 1, 1);
30 }
31 }
32 .bounceIn {
33 animation-name: bounceIn;
34 }
35