Fun with CSS3

CSS3 is powerful and fun!  Using SVG and CSS animations, you can do so many wonderful things! Using CSS animations is more efficient than using Javascript giving smoother transitions and less processing power for the browser. The animation is rather simple for this glorious effect:

.text-copy {
  fill: none;
  stroke: white;
  stroke-dasharray: 7% 28%;
  stroke-width: 3px;
  -webkit-animation: stroke-offset 9s infinite linear;
          animation: stroke-offset 9s infinite linear;
}
Corbin Rose