4

我对 simple.carousel.js 创建了一个编辑,以在悬停时停止轮播,但是当鼠标离开时重新启动它时遇到问题。我添加到 simple.carousel.js 的代码是:

// hover stop
if(config.auto!=true)
    $(this).mouseenter(function() {
        config.auto=false;
    }).mouseleave( function() {
        config.auto=true;
    });

您可以在这里看到完整的代码/示例以及我从上面添加的内容:http: //jsfiddle.net/6r6sC/2/

我的 mouseleave 功能有问题吗?

不确定这是否会有所帮助,但我也尝试了以下方法,但这也不起作用:

// hover stop
if(config.auto!=true)
    $(this).mouseenter(function() {
        config.auto=false;
    }).mouseleave( function() {
        setTimeout(function() {
        slide('next');
    }, config.auto);
    });

任何帮助将不胜感激,因为这让我很难过。

4

2 回答 2

0

使用 true 作为值是一个问题,导致 false boolean 或 int 预期来自 init 函数。

编辑 4:http: //jsfiddle.net/6r6sC/44/

在 slide() 中,添加了 startAuto()

if(config.auto!=false) {
startAuto();    
}

EDIT3:修复了多个计时器的问题,并创建了两个函数来处理启动/停止自动滑块。

这里的解决方案:http: //jsfiddle.net/6r6sC/41/

var cachedAuto = config.auto;
var timer = "";

var startAuto = function() {

    config.auto = cachedAuto;
    clearTimeout(timer);

    timer = setTimeout(function() {
         slide('next');
    }, config.auto);   
}

var stopAuto = function() {
    clearTimeout(timer);
    config.auto = false;
}

if(config.auto!=false) {
    // start auto sliding
    startAuto();    

    // pause/start on mouse events            
    $(this).on("mouseenter", function(event){
        stopAuto();
    }).on("mouseleave", function(event){
        startAuto();
    });
}
于 2012-11-28T20:43:24.070 回答
-1

好的,我已经做了一些研究和测试,并将“mouseleave”替换为“mouseout”,它可以工作!所以试试吧。

 // hover stop
 if(config.auto!=true)
$(this).mouseenter(function() {
    config.auto=false;
}).mouseout( function() {
    config.auto=true;
});
于 2012-11-28T20:27:02.327 回答