You are on page 1of 1

<style>

.hero_img {
animation-name: flying;
animation-duration: 3s;
animation-direction: both;
animation-iteration-count: infinite;
}
@keyframes flying {
from{transform: translateX(-25%);}
to{transform: translateX(+25%);}
}

</style>

You might also like