Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当stackoverflow的响应墙上显示新评论时,是否有任何jquery效果来模拟背景颜色的淡出,最好是使用Jquery :)
vanilla jQuery 不允许您轻松地为颜色设置动画,但jQuery UI增加了该功能。
$('#foo').animate({ backgroundColor: "#60ffff" }, 1000);
jQuery UI 的高亮功能也做了一些接近你想要的事情:
$('#bar').effect("highlight", {}, 1000);
如果您不想将所有 jQuery UI 引入您的页面,您可以使用jquery-color插件。