I would like to create a glowing effect on each icon individually. The idea is for each icon to glow for a brief moment and then return to its normal state before moving on to the next icon in line. I am considering using text-shadow for the glow effect and potentially implementing a loop in JQuery to cycle through the list of icons.
<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>
For CSS, I could use...
text-shadow:0px 0px 40px #fff;
As for JQuery, I'm still exploring possibilities.
Any assistance or suggestions would be greatly appreciated :)