我正在研究如何通过api部分中的Spritespin,js使playTo()函数通过最短路径到达目标帧?当前,它例如通过绕行从帧号60移到帧40,而不是移回20帧。我读到您可以在文档的此处选项中进行设置:https://www.cmz.ru/html/static/spritespin-master/page/docs/spritespin.api.html
我无法正常工作。我不知道如何在playTo()函数中输入选项。 我尝试了以下操作,但不起作用。
var array = [15, 60, 85, 108]
var currentImage = 0;
$('button.fwd').click(function(){
next()
//e.preventDefault();
$('.spritespin').spritespin('api').playTo(array[currentImage], nearest = true);
console.log(array[currentImage])
});
$('button.back').click(function(){
prev()
$('.spritespin').spritespin('api').playTo(array[currentImage], nearest= true);
console.log(array[currentImage])
});