this).css(“color”,“red”); },function(){ //鼠标移出时执行
隐藏 元素对象.hide(时间,方法);
显示 元素对象.show(时间,方法);
淡出 元素对象.fadeOut...(时间,方法);
淡入 元素对象.fadeIn(时间,方法);
上滑 元素对象.slideUp(时间,方法);
下滑 元素对象.slideDown(时间,方法);
自定义 元素对象.animate({“...(function(){
$("img").show(2000);
})
$("input:eq(2)").click(function(){
$("img").fadeOut...(2000);//淡出
})
$("input:eq(3)").click(function(){
$("img").fadeIn(2000);//淡入
})
$("input...{"width":"520px","height":"630px"},1000)
.animate({"width":"280px","height":"350px"},1000)
.fadeOut