单项选择题
以下正确实现元素oDiv先执行宽度变为75px的动画,等动画结束后,再执行高度变为0的动画的代码是()
A.oDiv.velocity({width:75}).velocity({height:0});
B.oDiv.velocity({height:0}).velocity({width:75});
C.oDiv.velocity({width:75,height:0});
D.oDiv.velocity({height:0,width:75});
点击查看答案
相关考题
-
单项选择题
设置oDiv的padding-left的动画由10px变为100px,以下错误的写法是()
A.oDiv.velocity({padding-left:"100px"})
B.oDiv.velocity({paddingLeft:"100px"})
C.oDiv.velocity({paddingLeft:100})
D.oDiv.velocity({’padding-left’:100}) -
单项选择题
在require.config的shim字段内导出非AMD模块中的多个方法时,以下写法正确的是()
A.init:function(){return{fun1:fun1,fun2:fun2}}
B.exports:function(){return{fun1:fun1,fun2:fun2}}
C.module.exports:function(){return{fun1:fun1,fun2:fun2}}
D.export:function(){return{fun1:fun1,fun2:fun2}} -
单项选择题
在require.config的shim字段内导出非AMD模块中的一个方法时,需要配置以下哪个属性()
A.export
B.return
C.module.exports
D.exports
