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 / bounce.css

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

27 lines 518 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @keyframes bounce {
2 20%,
3 53%,
4 80%,
5 from,
6 to {
7 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
8 transform: translate3d(0, 0, 0);
9 }
10 40%,
11 43% {
12 animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13 transform: translate3d(0, -30px, 0);
14 }
15 70% {
16 animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
17 transform: translate3d(0, -15px, 0);
18 }
19 90% {
20 transform: translate3d(0, -4px, 0);
21 }
22 }
23 .bounce {
24 animation-name: bounce;
25 transform-origin: center bottom;
26 }
27