PREVIEW
Animate Me
.animated-element {
animation-name: my-animation;
animation-duration: 1s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-fill-mode: none;
}@keyframes my-animation {
0% {
opacity: 1;
transform: translate(0px, 0px) scale(1) rotate(0deg);
background-color: #3b82f6;
}
100% {
opacity: 1;
transform: translate(100px, 0px) scale(1) rotate(0deg);
background-color: #3b82f6;
}
}