使用jQuery动画方法animate,下列代码正确的是()
A: animate({"width":"100px"},3000)
B: animate({"top":"+=100px"},3000)
C: animate({"display":"none"},3000)
D: animate({"border":"#ccc"},3000)
A: animate({"width":"100px"},3000)
B: animate({"top":"+=100px"},3000)
C: animate({"display":"none"},3000)
D: animate({"border":"#ccc"},3000)
举一反三
- 关于jQuery中自定义动画方法animate()的使用方法,正确的是(): $("div").animate("width","100px")|$("div").animate(400,{"width":"100px","height":"100px"})|$("div").animate({"height":"+=50px"})|$("div").animate({"height":"500px";"width":"500px"})
- 关于jQuery中自定义动画方法animate()的使用方法,正确的是 A: $("div").animate(400,{"width":"100px","height":"100px"}) B: $("div").animate("width",100px") C: $("div").animate({"height":"500px","width":"500px"}) D: $("div").animate({"height":"+=50px"})
- 对于<;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")
- animate方法的第一个参数可以设置为下列哪些选项 A: {"width":"100px","height":"100px"} B: {"width":"+=100px","height":"+=100px"} C: function(){alert("动画完成了")} D: "height"
- 关于以下方法的描述错误的是()。 $('div').animate({width: '100px'}, 100, 'linear'); A: 100表示动画时长是0.1秒 B: linear表示动画的切换效果 C: {width:'100px'}指定动画结束后的宽度变为100像素 D: 以上说法都不正确