使用animate方法实现与代码$("div").fadeIn(600)相同效果的代码写法是
举一反三
- 使用animate方法实现与代码$("div").fadeIn(600)相同效果的代码写法是( ) A: $("div").animate({"opacity":"1"}) B: $("div").animate({"opacity":"1"},"fast") C: $("div").animate({"opacity":"1"},600) D: $("div").animate({"opacity":"1"},"normal")
- 对于<;div style="width:100px,height:100px;background:red">;<;/div>;,用animate实现与代码$("div").hide(400)同样效果的写法是:_______。
- 对于<;div style="width:100px,height:100px;background:red">;<;/div>;,可实现与代码$("div").slideUp(400)同样效果的是( ) A: $("div").animate({"width":"0px","height":"0px"}) B: $("div").animate({"width":"0px","height":"100px"}) C: $("div").animate({"height":"0px"}) D: $("div").animate("height","0px")
- 这个代码$("div").animate({background-color:"red"},600)能将div背景颜色设置为红色吗?
- 对于<div style="width:100px,height:100px;background:red"></div>,可实现与代码$("div").slideUp(400)同样效果的是