# elementor/4.0.2/assets/lib/animations/styles/rubberBand.css

Elementor Website Builder – more than just a page builder, version 4.0.2. 25 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.0.2/code/assets/lib/animations/styles/rubberBand.css
- Raw: https://pluginprobe.com/plugins/elementor/4.0.2/raw/assets/lib/animations/styles/rubberBand.css
- Modified: 2024-08-25T13:59:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/4.0.2/code/assets/lib/animations/styles/rubberBand.css#L10-L20`.

```css
@keyframes rubberBand {
	from,
	to {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
}
.rubberBand {
	animation-name: rubberBand;
}

```
