标签: angularjs angularjs-animation
我有一个通过Javascript更改其宽度的容器。所以,我想使用$ animator为它制作动画。
我怎么能这样做:
var width = 200; $animator.start(function(element) { element.css({width: width}); }); $animator.animate();
请注意,我没有css样式来更改它。我用另一个容器做了,但在这种情况下需要使用js。