1

我正在使用这个库来为 PNG 图像制作动画:https ://github.com/pixelmatrix/animatePNG

源代码列出了一个 stop() 方法,但我该如何调用它?我想停止动画。

来源:https ://github.com/pixelmatrix/animatePNG/blob/master/animatePNG.js

4

1 回答 1

2

这似乎有点奇怪,但我这样做:

var $c = $("#container").animatePNG("spinner.png", 37, 37, 11, {horizontal: false});
$c.animatePNG.stop($c); // stop animation
于 2013-09-16T14:55:23.620 回答