我似乎无法找出它为什么不起作用,因为部分代码工作而且部分不是..
("#colorblue").click(function(){
$("#header").css("background-color", "#4374A5");
$("#who:hidden").delay(300).FadeIn("fast");
$("#idea:visible").FadeOut("fast");
$("#contact:visible").FadeOut("fast");
});
$("#colororange").click(function(){
$("#header").css("background-color", "#B08A64");
$("#who:visible").FadeOut("fast");
$("#idea:hidden").delay(300).FadeIn("fast");
$("#contact:visible").FadeOut("fast");
});
$("#colorred").click(function(){
$("#header").css("background-color", "#A26667");
$("#who:visible").FadeOut("fast");
$("#idea:visible").FadeOut("fast");
$("#contact:hidden").delay(300).FadeIn("fast");
});
这是我的jquery代码。标题部分正在工作,它正在改变背景颜色。我似乎无法得到谁联系和想法divs淡入或淡出。我把想法和联系人放在显示屏上:无。
也许这是非常愚蠢的事情,对不起,如果是,但我正在努力并且现在正盯着可笑的很长时间..答案 0 :(得分:1)
将FadeOut更改为
fadeOut()
和FadeIn到
fadeIn();