Build CSS keyframe animations visually.
@keyframes myAnim {
0% { transform: translate(0px, 0px) rotate(0deg) scale(1); opacity: 1; }
50% { transform: translate(0px, -30px) rotate(0deg) scale(1); opacity: 1; }
100% { transform: translate(0px, 0px) rotate(0deg) scale(1); opacity: 1; }
}
.element {
animation: myAnim 1s ease-in-out infinite normal;
}