问答详情
源自:2-2 Velocity.js基本用法

为什么运行不了

(function($){
	$('#div1').velocity({width:'300px'
	},{
		duration:3000
		});
})(jQuery);

代码是这样,但是运行的时候控制台这样说,运行不了

http://static.mukewang.com/img/59b0aaed00018fd906310081.jpg

提问者:慕少6141436 2017-09-07 10:13

个回答

  • 天若苍穹
    2017-09-07 22:50:53

    你没有导入velocity.min.js,要导入才能运行。    <script src="JS/velocity.min.js"></script>