关于animate方法,下列说法正确的是()
举一反三
- 关于jQuery的自定义动画animate方法,下列说法错误的是()
- 元素如果连续多次调用animate方法,下列说法正确的是
- 使用jQuery动画方法animate,下列代码正确的是() A: animate({"width":"100px"},3000) B: animate({"top":"+=100px"},3000) C: animate({"display":"none"},3000) D: animate({"border":"#ccc"},3000)
- 关于jQuery的自定义动画animate方法,下列说法错误的是() A: animate方法第一个参数可设置为键值对的对象 B: animate方法能同时以动画的形式改变元素的样式属性到某个确定的值 C: animate方法最后一个参数为回调函数 D: animate方法第一个参数可以不传入
- 关于jQuery中自定义动画方法animate()的使用方法,正确的是(): $("div").animate("width","100px")|$("div").animate(400,{"width":"100px","height":"100px"})|$("div").animate({"height":"+=50px"})|$("div").animate({"height":"500px";"width":"500px"})