0
The animation slide-in
begins in the margin-top:0%; width:100%;
and ends in the margin-top:300px; width:100%;
then what this animation does is to scroll down the text that is written.
But right after he comes down and finishes the animation, he goes back to margin-top:0%
. I need her to stay stable and stop at margin-top:300px
or at least, as soon as it’s over, repeat the animation.
Here is the code below:
#logo-h {
animation-duration: 3s;
animation-name: slidein;
z-index: 5;
text-align: center;
}
.slidein {
-moz-animation-duration: 3s;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-moz-animation-name: slidein;
-webkit-animation-name: slidein;
animation-name: slidein;
-moz-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-moz-animation-direction: alternate;
-webkit-animation-direction: alternate;
animation-direction: alternate;
}
@-moz-keyframes slidein {
from {
margin-top:0%;
width:100%
}
to {
margin-top:300px;
width:100%;
}
}
@-webkit-keyframes slidein {
from {
margin-top:0%;
width:100%
}
to {
margin-top:300px;
width:100%;
}
}
@-ms-keyframes slidein {
from {
margin-top:0%;
width:100%
}
to {
margin-top:300px;
width:100%;
}
}
@-o-keyframes slidein {
from {
margin-top:0%;
width:100%
}
to {
margin-top:300px;
width:100%;
}
}
@keyframes slidein {
from {
margin-top:0%;
width:100%
}
to {
margin-top:300px;
width:100%;
}
}
<div id="logo-h">teste</div>
Clarify your specific issue or add other details to highlight exactly what you need. The way it’s written here, it’s hard to know exactly what you’re asking.
– Asura Khan
The animation starts slide-in starts at margin-top:0%; width:100%; and ends at margin-top:300px; width:100%; then the written text goes down. But soon after it goes down and finishes the animation it goes back to the margin-top:0%. I need it to stay stable and stop at margin-top:300px or at least, as soon as it’s over, repeat the animation
– João Rocha