#rcaption {
animation-name: anrcaption;
animation-duration: 30s;
animation-timing-function: ease;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes anrcaption {
from {
transform: translate(5vw,0vh) scale(1,1);
opacity:1;
}
3% {
transform: translate(5vw,0vh) scale(1,1);
opacity:1;
}
7% {
transform: translate(6vw,2vh) scale(1.3,1.3);
opacity:1;
}
57% {
transform: translate(6vw,2vh) scale(1.3,1.3);
opacity:1;
}
60% {
transform: translate(6vw,2vh) scale(1.3,1.3);
opacity:0;
}
to {
transform: translate(6vw,2vh) scale(1.3,1.3);
opacity:0;
}
}
