1

当stackoverflow的响应墙上显示新评论时,是否有任何jquery效果来模拟背景颜色的淡出,最好是使用Jquery :)

4

2 回答 2

2

vanilla jQuery 不允许您轻松地为颜色设置动画,但jQuery UI增加了该功能。

$('#foo').animate({ backgroundColor: "#60ffff" }, 1000);

jQuery UI 的高亮功能也做了一些接近你想要的事情:

$('#bar').effect("highlight", {}, 1000);
于 2012-06-28T06:15:51.753 回答
0

如果您不想将所有 jQuery UI 引入您的页面,您可以使用jquery-color插件。

于 2012-06-28T06:25:47.990 回答