聘我网

新概念招聘3.0

这个网站的背景颜色是怎么消失的,代码如何写

vote up0vote downstar

http://51hired.com/questions 发完问题后 一个橘黄色的背景颜色消失了。如何实现

 

3 个答复

vote up0vote down

可以使用这个插件

链接
vote up0vote down

用的就是ls说的那个插件,使用方法如下:

$target.animate({ backgroundColor: 'orange' }, 1000)
        .animate({ backgroundColor: 'white' }, 1000);

$target是要产生这个效果的jQuery对象, 比如要让id=kdiv产生这个效果:

$('div#k').animate({ backgroundColor: 'orange' }, 1000) 
        .animate({ backgroundColor: 'white' }, 1000); 
链接
vote up0vote down

$target是要产生这个效果的jQuery对象

比如要让id=k的div产生这个效果:

$('div#k').animate({ backgroundColor: 'orange' }, 1000) .animate({ backgroundColor: 'white' }, 1000);

链接

您的回答





不是您要找的问题? 浏览其他含有标签 的问题或者 自己问个.