JSFiddle - React, Tailwind, and code Playground
by kodjoe mambi
HTML
<img class="effect" src="https://res2.yourwebsite.life/res/5eaf48a4da467d0022126577/61686613f0e67e00229d7515_optimized_768">
CSS
.effect {
max-width: 50%;
-webkit-animation: slide 0.5s infinite;
-webkit-animation-delay: 2s;
animation: slide 0.5s forwards;
animation-delay: 2s;
}
@-webkit-keyframes slide {
100% { left: 0; }
}
@keyframes slide {
100% { left: 0; }
}