在 Jquery 循环中遍历每个属性

Iterate through each attribute in Jquery loop

我目前正忙于自制 JQuery 滑块。对于客户,我想根据网页上的位置更改每张幻灯片。当我在第一个场景时,单击下一步,我想显示第二个场景,依此类推。当我在第六场时,我想回到第一场。

我尝试了几种方法,但不知何故我找不到解决方案。希望你们能给我指明正确的方向。

    <div id="-scene-wrapper">  
        <a href="#" class="previous"><h2>Back</h2></a> 
        <a href="#" class="next"><h2>Next</h2></a>  
        <div id="scene1" class="scenes">
            <h2>Scene 1</h2>
        </div>
        <div id="scene2" class="scenes">
            <h2>Scene 2</h2>
        </div>
        <div id="scene3" class="scenes">
            <h2>Scene 3</h2>
        </div>
        <div id="scene4" class="scenes">
            <h2>Scene 4</h2>
        </div>
        <div id="scene5" class="scenes">
            <h2>Scene 5</h2>
        </div>
        <div id="scene6" class="scenes">
            <h2>Scene 6</h2>
        </div>
    </div>
$(window).scroll(function () {
    $(".scenes").each(function (index) {
        $.fn.isInViewport = function () {
            var ScrollTop = $(window).scrollTop();
            console.log(ScrollTop);
        };

        $('.next').click(function(event){
            event.preventDefault();
            console.log(index);
            //Magic code 
        })

        $('.previous').click(function(event){
            event.preventDefault();
            console.log(index);
            //Magic code 
        })
    });
});

基于以上HTML代码,我解决了问题!很想听听您对此解决方案的看法。

解决方法如下: