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
单项选择题在require.config中配置基本路径的属性是()
A.baseUrl B.baseURL C.deps D.paths
单项选择题velocity的第二个参数中的easing的值为’ease-in-out’时,表示缓动的类型是()
A.动画一开始要逐渐加速最后要逐渐减速 B.使动画在一开始就达到加速的目的,然后一直到动画结束 C.动画以恒定速度开始并持续一段时间,然后在动画结束前逐渐减速 D.动画一开始要逐渐减速最后要逐渐加速