我一直在尝试为我的网站的背景颜色设置动画。我尝试了很多方法,但它根本不起作用。
我想在代码的其他部分使用它,但这不起作用:
jQuery('div#Wrapper').animate({backgroundColor:'rgb(7,100,172)'),8500);
我一直在尝试为我的网站的背景颜色设置动画。我尝试了很多方法,但它根本不起作用。
我想在代码的其他部分使用它,但这不起作用:
jQuery('div#Wrapper').animate({backgroundColor:'rgb(7,100,172)'),8500);
如果你的 div 有一个 Wrapper 的 id 那么你的语法应该是
$('#Wrapper').animate({backgroundColor:'rgb(7,100,172)'},8500);
你也错过了关闭}
你的animate
功能
修复您的语法错误(使用右括号代替括号),并首先包含 jQuery,然后是 jQuery UI。
jQuery('div#Wrapper').animate({backgroundColor:'rgb(7,100,172)'},8500);