I have a vision for an animation that involves three successive right angle quotes, like » » »
, glowing one after the other from left to right and then back again. This could be a unique effect that developers might find interesting and valuable.
The idea for this animation is inspired by the slide-to-unlock feature on iPhones, where text glows progressively.
While I am familiar with CSS3 animations using keyframes and have used them before, I'm unsure about coding the looping part. Perhaps Javascript is the solution, possibly utilizing jQuery since it's already present on the page.
The HTML structure I envision would look something like this:
<span class="glowquote"><span>»</span> <span>»</span> <span>»</span></span>
If you have any ideas on how to best implement this in a clever way, please share your thoughts. I understand that not all browsers support CSS3 animations, but I only need to cater to modern webkit and gecko implementations.
Edit 1: Included span tags around each »
for individual CSS property changes in JavaScript.
Edit 2: To clarify, the left-most quote will glow first with a specific color using CSS properties, followed by the next quote with a short delay.
Edit 3: For further clarification and inspiration, check out this example of the exact animation I have in mind: Example Link
FINAL EDIT WITH SOLUTION SUMMARY: After considering various options, I chose the pure CSS3 approach for my implementation. There are multiple valid solutions presented here, so explore what works best for you. You can view my final implementation at: Final Implementation Link. Have fun experimenting with this animation on your projects!