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
Comments
Post a Comment