0

我使用 jquery 创建了一个图像循环,它工作正常。这是我的代码。

$(document).ready(function(){
    $('.images').hide();    
    $('#image1').show('slide', {direction: 'right'}, 500);
    $('#image1').delay(2000).hide('slide', {direction: 'left'}, 500);
    var sc = $('#image img').size();
    var count = 2;
    setInterval(function(){
        $('#image'+count).show('slide', {direction: 'right'}, 500);
        $('#image'+count).delay(2000).hide('slide', {direction: 'left'}, 500);
        if(count == sc){
            count = 1;
        }else{
            count = count + 1;
        }
    }, 3000);

    $('.name').click(function(){
        var name = $(this).attr('id');
        name = name.replace('name', '');
        count = name;
    });
});

这是html代码。

                    <div id="image">
                        <img class="images" id="image1" alt="Image loop" src="image1.jpg" width="550px" height="400px"/>
                        <img class="images" id="image2" alt="Image loop" src="image2.jpg" width="550px" height="400px"/>
                        <img class="images" id="image3" alt="Image loop" src="image3.jpg" width="550px" height="400px"/>
                        <img class="images" id="image4" alt="Image loop" src="image4.jpg" width="550px" height="400px"/>
                        <img class="images" id="image5" alt="Image loop" src="image5.jpg" width="550px" height="400px"/>
                    </div>
                    <div id="name">
                        <div class="name" id="name1">
                            <img src="image1.jpg" width="80px" height="80px"/>
                        </div>
                        <div class="name" id="name2">
                            <img src="image2.jpg" width="80px" height="80px"/>
                        </div>
                        <div class="name" id="name3">
                            <img src="image3.jpg" width="80px" height="80px"/>
                        </div>
                        <div class="name" id="name4">
                            <img src="image4.jpg" width="80px" height="80px"/>
                        </div>
                        <div class="name" id="name5">
                            <img src="image5.jpg" width="80px" height="80px"/>
                        </div>

css 控制右侧的名称集。我的想法是,点击右边的小图,立即切换用户选择的图片。 在此处输入图像描述 它似乎有点工作。setInterval 仍在运行,循环被破坏。我该如何正确处理这个问题?这是jsfiddle链接。谢谢!

4

3 回答 3

2

您可以停止setInterval运行clearInterval。具体来说,您需要在 的返回值上调用它setInterval

var interval = setInterval(...
clearInterval(interval);

编辑:这并不直接适用于您的问题。您可以做的只是创建一个单独的函数来回调setInterval. 然后,还调用该函数作为对 click 事件的回调的一部分。是否要清除间隔(停止动画)取决于您。

于 2013-01-23T00:26:25.467 回答
1

这是一个简单的工作示例

var interval;
var times;

function doSomething() {
    if (times == 100) {
        // Unset the interval:
        clearInterval(interval);
    } else {
        alert("Hey");
        times++;
    }
}

// Initialize interval:
interval = setInterval(doSomething, 1000);
于 2013-01-23T00:33:33.483 回答
1

出现问题是因为您在单击处理程序中将count的类型从数字更改为字符串 - 当您将name分配给count时。我已经编辑了您的代码以包含 parseInt。

    $('.name').click(function(){
    var name = $(this).attr('id');
    name = name.replace('name', '');
    count = parseInt(name, 10);  
});
于 2013-01-23T01:34:40.930 回答