html5 - Animated Text with CSS -


i'm trying create animated text html5. here how goes. example have word telephone. each alphabet appear specific colour animation. after visiting tutorials cant seems find of them. found text-shadow, instance, http://www.w3.org/style/examples/007/text-shadow.en.html

it nice if has tutorial on such animation.

here example using css3 @keyframes

   .lettera{       animation:lettera 0.5s infinite;       -webkit-animation:lettera 0.5s infinite; /* safari , chrome */    }      @keyframes lettera{        {color:red;}        {color:blue;}     }      @-webkit-keyframes lettera /* safari , chrome */{        {color:red;}        {color:blue;}     } 

working demo

read on css animations more browser compatibility versions

i still agree there may have been lack of research here, here links google out

link 1

link 2

link 3


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -