Answers for "css animation left to right infinite codepen"

CSS
0

css animation left to right infinite codepen

@keyframes sweep {
	from {
    	transform: translateX(-100%);
    }
    to {
 		transform: translateX(100%);   
    }
}


.your-div{
	animation: sweep 1s infinity ease-in-out;
}
Posted by: Guest on May-05-2022

Code answers related to "css animation left to right infinite codepen"

Browse Popular Code Answers by Language