.redbox{
width: 100%;
background-color: red;
height: 100px;
animation-name: movereverse;
animation-duration: 5s;
position: relative;
animation-fill-mode:forwards;
animation-direction:normal;
animation-timing-function: ease-in;
overflow: hidden;
}
@keyframes movereverse{
0%{
left: 0;
}
25%{
left:250px;
}
50%{
}
}
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<div class="redbox">hello</div>
</body>
</html>