console
$("document").ready(function(){
$('p').addClass('animated rollIn');
});
<div style="position: relative">
<p>
<span class="ef">Be</span>lieve in<br> <span class="ef">You</span>rself <span class="ef">!</span>
</p>
</div>
body {
background: #090d00;
color: lightgreen;
margin: 0;
}
p {
text-transform: uppercase;
position: absolute;
top:100px;
width:100%;
text-align: center;
font-size:100px;
font-family: 'Boogaloo', cursive;
letter-spacing: 5px;
}
p span {
background: url(http://f.cl.ly/items/010q3E1u3p2Q0j1L1S1o/animated_text_fill.png) repeat-y;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 3px tomato;
-webkit-animation: aitf 65s linear infinite;
}
@-webkit-keyframes aitf {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}