我正在开发一个 HTML5 应用程序,我正在画布上以一定的速度和每个动画之间的特定超时绘制一系列图像。
能够多次使用它,我为它做了一个功能。
var imgNumber = 0;
var lastImgNumber = 0;
var animationDone = true;
function startUpAnimation(context, imageArray, x, y, timeOut, refreshFreq) {
if (lastImgNumber == 0) lastImgNumber = imageArray.length-1;
if (animationDone) {
animationDone = false;
setTimeout(playAnimationSequence, timeOut, refreshFreq);
}
context.drawImage(imageArray[imgNumber], x, y);
}
function playAnimationSequence(interval) {
var timer = setInterval(function () {
if (imgNumber >= lastImgNumber) {
imgNumber = 0;
clearInterval(timer);
animationDone = true;
} else imgNumber++;
}, interval);
}
现在在我的主代码中,每次 startUpAnimation 使用正确的参数它都可以正常工作。但是当我想在屏幕上同时绘制多个动画时,每个动画都以不同的间隔和速度绘制它不起作用!
startUpAnimation(context, world.mushrooms, canvas.width / 3, canvas.height - (canvas.height / 5.3), 5000, 300);
startUpAnimation(context, world.clouds, 100, 200, 3000, 100);
它现在在正确的位置显示两个动画,但它们在第一个调用的间隔和超时时都进行动画处理,所以在我的例子中是 5000 超时和 300 间隔。
我该如何解决这个问题,以便他们都独立玩?我想我需要把它变成一个类或其他东西,但我不知道如何解决这个问题。在某些情况下,我什至需要使用此功能同时显示 5 个动画。
任何帮助,将不胜感激!