Вот пример использования jQuery.animate (). Он не использует цвета, но непрозрачность:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
div {
width: 300px;
height: 300px;
border: solid #000 1px;
}
</style>
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript">
$(function() {
$("div").click(function() {
$("<span>Hello there!</span>").appendTo(this)
.animate({
opacity: 0
}, 500, function() {
$(this).animate({
opacity: 1,
}, 500);
});
});
});
</script>
</head>
<body>
<div></div>
</body>
</html>