@shoelace-style/animations
Version:
Your favorite animate.css effects available as ES modules for use with the Web Animations API.
10 lines (9 loc) • 408 B
JavaScript
export const rubberBand = [
{ offset: 0, transform: 'scale3d(1, 1, 1)' },
{ offset: 0.3, transform: 'scale3d(1.25, 0.75, 1)' },
{ offset: 0.4, transform: 'scale3d(0.75, 1.25, 1)' },
{ offset: 0.5, transform: 'scale3d(1.15, 0.85, 1)' },
{ offset: 0.65, transform: 'scale3d(0.95, 1.05, 1)' },
{ offset: 0.75, transform: 'scale3d(1.05, 0.95, 1)' },
{ offset: 1, transform: 'scale3d(1, 1, 1)' }
];