2
I made this move with css and my question is: How can I stop this movement in a certain place?
I can style according to left, right, top etc. But how can I stop the car movement according to my code below:
Thanks in advance!
CSS:
<style>
.box{
content: "";
position: absolute;
z-index: 9999;
left: -40%;
animation: bgc 20000ms linear infinite;
}
@keyframes bgc {
0% {left: 140%}
}
</style>
HTML:
<div id="carligue" class="box">
<img style="max-width: 330px !important;" src="https://img2.gratispng.com/20181118/kjz/kisspng-maserati-levante-sports-car-luxury-vehicle-sports-car-images-png-4k-pictures-4k-pictures-5bf15dec03bd89.3228052315425448760153.jpg" >
</div>