#lcaption {
animation-name: anlcaption;
animation-duration: 30s;
animation-timing-function: ease;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes anlcaption {
from {
transform: translate(3vw,0vh);
opacity:0;
}
10% {
transform: translate(3vw,0vh);
opacity:0;
}
13% {
transform: translate(3vw,0vh);
opacity:1;
}
to {
transform: translate(3vw,0vh);
opacity:1;
}
}
