在jQuery脚本中,我将CSS样式应用于html表行,以在行链接上突出显示它:
$(this).closest('tr').css("background-color", "silver");
如何通过淡化隐藏物体等效果轻柔地改变这种变化的色彩效果?
答案 0 :(得分:3)
可以使用jQuery动画颜色。最简单的方法是使用Color Plugin。此外,如果您已经在使用jQuery UI,那么它也是supports this functionality。
答案 1 :(得分:1)
请注意:您还需要使用 JQuery UI 。
$(this).closest('tr').animate({ backgroundColor: "silver" }, 1000);
将1000替换为您希望将其更改为白银所需的时间。