CSS3 Hover Text Transition

Using CSS3 Transitions to change the color of text links. View a demo here.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<title>CSS3 Hover Fade Text Reflections</title>
        <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?3.1.2/build/cssfonts/fonts-min.css&amp;3.1.2/build/cssreset/reset-min.css" />
		<style type="text/css">
			/*1B1B26,26394C,28647F,13B3BF,A3FF57,E80C7A*/
			html {
				background-color: #1B1B26;
			}
			body {
				padding: 20px;
				font: bold 20px/1.4em "Trebuchet MS", Arial, Helvetica, sans-serif;
				color: #28647F;
			}
			p {
				margin-bottom: 1em;
			}
			a {
				color: #13B3BF;
				text-decoration: none;
				transition: color; /*for the future*/
				transition-duration: 4000ms;
				-webkit-transition: color; /*http://www.w3.org/TR/css3-transitions/*/
				-webkit-transition-duration: 4000ms;
				-moz-transition: color; /*https://developer.mozilla.org/en/CSS/-moz-transition*/
				-moz-transition-duration: 4000ms;
				-o-transition: color; /*http://dev.opera.com/articles/view/css3-transitions-and-2d-transforms/*/
				-o-transition-duration: 4000ms;
			}
			a:hover {
				color: #A3FF57;
				transition: color;
				transition-duration: 400ms;
				-webkit-transition: color;
				-webkit-transition-duration: 400ms;
				-moz-transition: color;
				-moz-transition-duration: 400ms;
				-o-transition: color;
				-o-transition-duration: 400ms;
			}
			a:active {
				color: #E80C7A;
			}
		</style>
	</head>
	<body>
        <p>The free <a href="http://www.androidapps.com/tech/articles/3010-wordpress-upgrades-free-app-for-blogging-on-the-go">WordPress</a> for Android app was upgraded thanks to feedback from faithful users. Updates include fixes to numerous, annoying bugs like unexpected app crashes, log-in issues and more.Most notable in the recent upgrade is a new comment feature, which displays comments in real time as comments arrive in your Droid notification bar.</p>
        <p>In the <a href="http://www.androidapps.com/tech/articles/3010-wordpress-upgrades-free-app-for-blogging-on-the-go">mobile society in which we live, it's nice to have productive apps like WordPress to make social networking easy on the go. Use the app to blog while on vacation or update the company blog</a> while on a business trip. Out to lunch and have a crisis that needs to be communicated companywide? Quickly upload a notification blog without heading back to your desk.</p>
        <p>This open source app lets users write new posts, edit current content, and even manage blog comments. The comment notifications are great for keeping up with the moderation of your blog letting you respond in <a href="http://www.androidapps.com/tech/articles/3010-wordpress-upgrades-free-app-for-blogging-on-the-go">real time and engage the readers</a> of your blog.</p>
        <p><a href="http://www.androidapps.com/tech/articles/3010-wordpress-upgrades-free-app-for-blogging-on-the-go">The app is well-designed with three useful headings at the top</a>: comments, posts and pages. Pick your action, and post away. Users can also save posts for later. I love this feature for when I have a blog idea on the go. Instead of writing it down on a stray receipt, I can log my idea as a draft post for easy access later.</p>
        <p>If you already <a href="http://www.androidapps.com/tech/articles/3010-wordpress-upgrades-free-app-for-blogging-on-the-go">use WordPress to power your blog</a>, definitely download this app to your Android phone.</p>
	</body>
</html>
This entry was posted in Uncategorized. Bookmark the permalink.