Debería usar el animation-fill-mode (
https://developer.mozilla.org/en-US/...tion-fill-mode), de esta manera estaría reteniendo el valor final de la animación
Puedes aplicarlo de la siguiente manera:
Código CSS:
Ver originaldiv
{
width:100px;
height:100px;
background:red;
position:relative;
animation:myfirst 2s forwards;
-moz-animation:myfirst 2s forwards; /* Firefox */
-webkit-animation:myfirst 2s forwards; /* Safari and Chrome */
-o-animation:myfirst 2s forwards; /* Opera */
}