I developed the EasingExample feature to display CSS easing styles. It offers a list of styles, each with an animation. Users can copy styles to the clipboard for easy experimentation. This feature aids in understanding the effects of different easing styles. A version with Framer Motion is in the works. Code here
@keyframes bounce 0%={ transform: translateY(0); }, 50%={ transform: translateY(40px); }, 100%={ transform: translateY(0); },