jQuery UI эффекты расширяют функции анимации, что позволяет анимировать цвета. Что часто используется для переключения особенностей класса, данный метод поддерживает следующие свойства: * backgroundColor * borderBottomColor * borderLeftColor * borderRightColor * borderTopColor * color * outlineColor с одной из следующих комбинаций: * hex (#FF0000) * rgb (rgb(255,255,255)) * names ('black')
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link href="http://test-drupal.ru/themes/slyweb/css/jquery-ui-1.7.2.custom.css"
rel="stylesheet" type="text/css"/>
<script src="http://test-drupal.ru/themes/slyweb/js/jquery-1.3.2.min.js"></script>
<script src="http://test-drupal.ru/themes/slyweb/js/jquery-ui-1.7.2.custom.min.js"></script>
<script>
$(document).ready(function(){
$(function() {
$("#button").toggle(
function() {
$("#effect").animate({backgroundColor: '#aa0000', color: '#fff', width: 500}, 1000);
},
function() {
$("#effect").animate({backgroundColor: '#fff', color: '#000', width: 240}, 1000);
}
);
});
});
</script>
</head>
<body class="iframe">
<div class="demo">
<div class="toggler">
<div id="effect" class="ui-widget-content ui-corner-all">
<h3 class="ui-widget-header ui-corner-all">Animate</h3>
<p>
Etiam libero neque, luctus a,
eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus,
adipiscing ut, luctus sed, hendrerit vitae, mi.
</p>
</div>
</div>
<button id="button"
class="ui-state-default ui-corner-all">Run Effect</button>
</div><!-- End demo -->
<div style="display: none;" class="demo-description">
<p>Click the button above to preview the effect.</p>
</div><!-- End demo-description -->
</body>
</html>
<style>
.toggler {
.toggler { width: 500px; height: 200px; position: relative;}
#button { padding: .5em 1em; text-decoration: none; }
#effect { width: 240px; height: 135px; padding: 0.4em;
position: relative; background: #fff; }
#effect h3 { margin: 0; padding: 0.4em; text-align: center; }
</style>