<style>
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.wow.animated {
visibility: visible;
}
.wow.fadeInLeft {
animation-name: fadeInLeft;
animation-duration: 1s;
animation-fill-mode: both;
}
.wow.fadeInRight {
animation-name: fadeInRight;
animation-duration: 1s;
animation-fill-mode: both;
}
</style>
<div id="innerLeft" class=" w-1/2 h-full flex flex-col items-center img_wrap wow fadeInLeft animated" style="visibility: visible; animation-name: fadeInLeft;"></div>
<div id="innerRight" class=" w-1/2 h-full flex flex-col items-center img_wrap wow fadeInRight animated" style="visibility: visible; animation-name: fadeInRight;"></div>