"text animation with css "
Bootstrap 4.1.1 Snippet by ALIMUL AL RAZY

<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 ----------> <div class="container"> <div class="row"> <h2>This is css animation</h2> </div> </div>
h2{ color: black; font-family: "arial"; font-size: 3em; margin: 10px 0 0 10px; white-space: nowrap; overflow: hidden; width: 100%; animation: animtext 4s steps(80, end); transition: all cubic-bezier(0.1, 0.7, 1.0, 0.1); } @keyframes animtext { from { width: 0; transition: all 2s ease-in-out; } }

Related: See More


Questions / Comments: