问答详情
源自:2-4 预定义动画和自定义动画

老师,这段代码不能实现,帮忙看下什么原因

(function($){
	var seq = [
		{
			elements:$('#div1'),
			properties:{width:'300px'},
			options:{duration:1000}
		},
		{
			elements:$('#div2'),
			properties:{width:'300px'},
			options:{duration:1000}
		},
		{
			elements:$('#div3'),
			properties:{width:'300px'},
			options:{duration:1000}
		},
		$.Velocity.RunSequence(seq)
	];
})(jQuery);

老师,这段代码不能实现,帮忙看下什么原因

提问者:Carrie_IT 2015-08-18 12:58

个回答

  • qq_良药苦口_0
    2015-09-15 19:08:47
    已采纳

    你最后一句代码放错位置了。。。应该在seq序列外面的

  • 愛倪很簡單
    2015-08-18 16:02:26

    还是不行哦

  • Carrie_IT
    2015-08-18 15:28:58

    var seq = [
    		{
    			elements:$('#div1'),
    			properties:{width:'300px'},
    			options:{duration:1000}
    		},
    		{
    			elements:$('#div2'),
    			properties:{width:'300px'},
    			options:{duration:1000}
    		},
    		{
    			elements:$('#div3'),
    			properties:{width:'300px'},
    			options:{duration:1000}
    		},
    	];
    	$.Velocity.RunSequence(seq);

    你试一下这个,回复里面不能发这么长的代码~~~

  • 愛倪很簡單
    2015-08-18 15:27:05

    我写了也不能实现,是什么原因啊

  • Carrie_IT
    2015-08-18 12:59:41

    真是粗心啦~~~找到原因了呢~~~