Assuming I start with:
@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
Can I modify it to achieve the following effect where it jumps left to right and back as its main position?
@keyframes animateLeftJump{
from{left:-300px;opacity:0}
to{left:0;opacity:1}
from{left:0px;}
to{right:100px;}
from{right:100px;}
to{left:0px;}
}