I want to give a delay to this animation but I'm not getting a delay before it goes to the center of the page, in case I add 'animation-delay' inside the class .ft it already starts in the center of the page when loading it, I wanted the page load to start with a delay before it started to appear, leaving it at the same speed when walking to the center, ??
*{ padding:0px; margin:0px;}
body{background-color:#6C9;}
p.ft{ position: absolute;
top:100px;
left:300px;
transition:all 0.5s linear;
font-size:40px;
color:#FFF;
overflow:hidden;
white-space:nowrap;
}
.ft{ animation-timing-function:10s ease-in;
animation-name:obj;
animation-duration:3s;
}
/*não funciona*/
@keyframes obj{ from{ left:-500px; animation-delay:5s;}
to{ left:300px;}
}
<p class="ft">ANIMAÇÃO MOVE</p>