嗨,我有这个小脚本,用fadein / out效果改变背景图像,
/*controla la velocidad de la animación*/
var slideshowSpeed = 1000;
var transitionSpeed = 2000;
var timeoutSpeed = 500;
/*No tocar*/
var interval;
var activeContainer = 1;
var currentImg = 0;
var animating = false;
var navigate = function(direction) {
// Si ya estamos navegando, entonces no hacemos nada!
if(animating) {
return;
}
currentImg++;
if(currentImg == photos.length + 1) {
currentImg = 1;
}
// Tenemos dos, uno en el que tenemos la imagen que se ve y otro d?nde tenemos la imagen siguiente
var currentContainer = activeContainer;
// Esto puedo optimizarlo con la funci?n modulo, y cambiar 1 y 2 por 0 y 1-> active = mod2(active + 1)
if(activeContainer == 1) {
activeContainer = 2;
} else {
activeContainer = 1;
}
// hay que decrementar el ?ndice porque empieza por cero
cargarImagen(photos[currentImg - 1], currentContainer, activeContainer);
};
var currentZindex = -1;
var cargarImagen = function(photoObject, currentContainer, activeContainer) {
animating = true;
// Nos aseguramos que el nuevo contenedor está siempre dentro del cajon
currentZindex--;
/*if(currentZindex < 0) currentZindex=1;*/
// Actualizar la imagen
$("#headerimg" + activeContainer).css({
"background-image" : "url(" + photoObject + ")",
"display" : "block",
"z-index" : currentZindex
});
// FadeOut antigua
// Cuando la transición se ha completado, mostramos el header
$("#headerimg" + currentContainer).fadeOut(transitionSpeed,function() {
setTimeout(function() {
animating = false;
}, timeoutSpeed);
});
};
function iniciarPase(){
var animating = false;
//ver la siguente
navigate("next");
//iniciar temporizador que mostrará las siguientes
interval = setInterval(function() {
navigate("next");
}, slideshowSpeed);
}
function pararPase(){
var animating = true;
console.log('paramos la animación');
interval = clearInterval(interval);
}
/*Gestion de pase de imágenes de fondo*/
$(document).ready(function() {
iniciarPase();
});
但是包含pararPase()
表达式的函数clearInterval
似乎不起作用,即使它在<body onload="pararPase()">
上
知道我错过了什么吗?
答案 0 :(得分:2)
你的基本逻辑工作得很好,这里是live test case。
所以很可能你错误地绑定pararPase
,例如当按钮不存在时尝试绑定为document.ready()
之外的点击处理程序 - updated test case来证明这一点。
另一个选项是代码中的其他错误,请检查Chrome JavaScript控制台以查看是否属于这种情况。
正如其他人在评论中提到的那样,将clearInterval的返回值赋给变量是没有意义的,但没有害处:变量的值只有“未定义”。
编辑:有可能多次调用iniciarPase
,这将导致多个定时器仅清除最后一个定时器。所以,为了安全起见,请将此添加到您的功能中:(这实际上是Diode在他的回答中试图说的)
function iniciarPase(){
var animating = false;
//ver la siguente
navigate("next");
//iniciar temporizador que mostrará las siguientes
if (interval)
clearInterval(interval);
interval = setInterval(function() {
navigate("next");
}, slideshowSpeed);
}
答案 1 :(得分:0)
clearInterval(interval);
interval = setInterval(function() {
navigate("next");
}, slideshowSpeed);