Answers for "Css left-to-right animation."

CSS
0

Css left-to-right animation.

/*Css float aniimation, left to right.*/
@keyframes left_to_right{
	from{
    	margin-left: 0vw;
    }
	to{
    	margin-left:100vw;
    }
}

img{
	animation: left_to_right 2s linear infinite;
}
Posted by: Guest on March-04-2022

Code answers related to "Css left-to-right animation."

Browse Popular Code Answers by Language