You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
457 B
33 lines
457 B
@keyframes rubberBand { |
|
from { |
|
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); |
|
} |
|
|
|
to { |
|
transform: scale3d(1, 1, 1); |
|
} |
|
} |
|
|
|
.rubberBand { |
|
animation-name: rubberBand; |
|
}
|
|
|