css-animation-direction
by VIvek Vaishnav
HTML
<div class="box red left-right">
Backwards
</div>
<div class="box blue right-left">
Farwards
</div>
CSS
.box{width:100px;height:30px;background:#ff5722;margin:10px auto;position:relative; text-align:center }
.red{background:#f44336}
.blue{background:#00bcd4}
@keyframes toright{0%{left:0}100%{left:200px}}
@keyframes toleft{0%{right:0}100%{right:200px}}
.left-right{animation:toright 5s ease-in-out backwards}
.right-left{animation:toleft 5s ease-in-out forwards}