"CSS3 Animation"
Bootstrap 3.3.0 Snippet by ovi100

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/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="svg"> <svg viewBox="0 0 1350 600"> <text x="50%" y="40%" fill="transparent" text-anchor="middle"> Text Animation </text> </svg> </div>
body{ background: #262626; font-family: 'Roboto', sans-serif; } svg text{ stroke: #fff; font-size: 100px; font-weight: 400; stroke-width: 5; animation: textAnimate 6s infinite alternate; } @keyframes textAnimate{ 0%{ stroke-dasharray: 0 50%; stroke-dashoffset: 20%; } 100%{ stroke-dasharray: 50% 0; stroke-dashoffset: -20%; } }

Related: See More


Questions / Comments: