Код
<div class="anim_txt">
<p>
<span>
Animated text
</span>
</p>
</div>
Код
.anim_txt {
background: #090d00;
color: rgba(255, 255, 255, 0.5);
text-align: center;
height: 200px;
}
.anim_txt p {
border: 4px double rgba(255, 255, 255, 0.25);
border-width: 4px 0;
padding: 1.5em 0em;
position: absolute;
/* top: 18%; */
left: 50%;
width: 40em;
margin: 35px 0 0 -20em;
}
.anim_txt span {
text-transform: uppercase;
font: 700 4em/1 "Oswald", sans-serif;
padding: .25em 0 .325em;
display: block;
text-shadow: 0 0 80px rgba(255, 255, 255, 0.9);
animation: bounce-top 2s infinite both;
}
@keyframes bounce-top {
0% {
transform: translateY(-27px);
animation-timing-function: ease-in;
opacity: 1;
}
24% {
opacity: 1;
}
40% {
transform: translateY(-24px);
animation-timing-function: ease-in;
}
65% {
transform: translateY(-12px);
animation-timing-function: ease-in;
}
82% {
transform: translateY(-6px);
animation-timing-function: ease-in;
}
93% {
transform: translateY(-4px);
animation-timing-function: ease-in;
}
25%,
55%,
75%,
87% {
transform: translateY(0px);
animation-timing-function: ease-out;
}
100% {
transform: translateY(0px);
animation-timing-function: ease-out;
opacity: 1;
}
}