jQuery jQueryUI.
, , :
<p id="notice" class="class1">This is something to highlight</p>
, 1 2. CSS , , .
$("#notice").addClass("class2", 50);
50, , . jQuery, jQueryUI.
jQuery aimate. css, , .
$('#clickme').click(function() {
$('#notice').animate(
{background-color: yellow},
5000,
function() {
$("#notice").removeClass("class1");
});
});
source
share