"Super Text Animation "
Bootstrap 4.1.1 Snippet by ALIMUL AL RAZY

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.1/TweenMax.min.js"></script>
<div class="text-area">
<p class="anim-p">Hello this is</p>
<p class="anim-p">Alimul Al razy</p>
<p class="anim-p">I love bangladesh</p>
<p class="anim-p">I love to play & watch</p>
<p class="anim-p">Football</p>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@import url('https://fonts.googleapis.com/css?family=Oswald');
body{
background: #3F51B5;
color: #fff;
}
p{
font-family: 'Oswald', sans-serif;
font-size: 2em;
margin: 2px 0;
}
.text-area{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
TweenMax.staggerFrom(".anim-p", .4, { opacity:0,scale:.5, ease: Back.easeOut.config(3),y:30 }, 0.05);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: