I am trying to get a add a glow effect on each icon, one after the other. Therefore, the first icon would glow for a 10th of a second or so and return to normal, then the next icon along would glow and return to normal etc. I plan to use text-shadow for the glow and maybe some sort of a loop in JQuery to go though the list.
<ul>
<li>
    <span class="fa-stack custom-icon">
      <i class="fa fa-circle fa-stack-2x one"></i>
      <i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
    </span>
</li>
<li>
    <span class="fa-stack custom-icon">
      <i class="fa fa-circle fa-stack-2x two"></i>
      <i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
    </span>
</li>
<li>
    <span class="fa-stack custom-icon">
      <i class="fa fa-circle fa-stack-2x three"></i>
      <i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
    </span>
</li>
CSS is simply ...
    text-shadow:0px 0px 40px #fff;
JQuery is ??
Any help welcome :)
 
    