jQuery Endless Scrolling循环

时间:2011-12-11 20:30:19

标签: javascript jquery

我在jsFiddle上有一个项目:

jsFiddle Link

JavaScript的:

var scroller = function() {
    $('#holder div').animate({
        left: ($t.attr('id') == 'prev' ? '-=' : '+=') + 3
    }, 10, 'linear', function() {
        if ($(this).position().left < -$('li:first-child', this).width()) {
            w = $('li:first-child', this).totalWidth();
            $('li:first-child', this).appendTo('ul', this);
            $(this).css('left', $(this).position().left + w);
        }
    });
};

$.fn.extend({
    totalWidth: function() {
        return this.outerWidth() + parseInt(this.css('margin-left'), 10) + parseInt(this.css('margin-right'), 10);
    }
});
wdth = 0;
$('#marquee ul li').each(function() {
    wdth += $(this).totalWidth();
});
$('#holder div').width(wdth);
var to;
$('#prev, #next').css('top', ($('#marquee').outerHeight() - $('#prev').outerHeight()) / 2).live('mousedown mouseup', function(e) {
    $t = $(this);
    if (e.type == 'mousedown') {
        to = setInterval(scroller, 15);
    }
    else {
        clearInterval(to);
    }
});

HTML:

<div id="marquee">
    <div id="prev"><</div>
    <div id="next">></div>
    <div id="holder">
        <div>
        <ul>
            <li>Part 1</li>
            <li>Part 2</li>
            <li>Part 3</li>
            <li>Part 4</li>
            <li>Part 5</li>
            <li>Part 6</li>
            <li>Part 7</li>
            <li>Part 8</li>
            <li>Part 9</li>
            <li>Part 10</li>
        </ul>
    </div>
    </div>
</div>

CSS:

* {
    font-family: verdana;
    font-size: 12px;
}
#marquee {
    top: 50px;
    position: relative;
    width: 80%;
    height: 34px;
    background-color: #CCC;
    margin: 0 auto;
    padding: 0;
}
#holder {
    overflow: hidden;
position: absolute;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
}
#holder div {
    position: absolute;
}
#marquee ul li {
    display: inline-block;
    float: left;
    margin-left: 5px;
    padding: 5px 7px;
    background-color: #555;
}
#marquee ul li:nth-child(2n+1) {
background-color: #888;
}
#marquee ul li:first-child {
    margin-left: 0;
}
#prev, #next {
    position: absolute;
    top: 10px;
    background-color: #66F;
    padding: 2px;
    cursor: pointer;
    z-index: 9002;
}
#prev {
    left: -13px;
    border-radius: 5px 0 0 5px;
}
#next {
    right : -13px;
    border-radius: 0 5px 5px 0;
}

我想要实现的是在mousedown上滚动循环,在mouseup上停止。

我已经能够使它滚动并循环,但它会在每次循环变化时“跳跃”。

有没有人有任何想法?


我编辑了小提琴以删除CSS规则,也略微编辑了代码。

最初当它向左滚动时,它跳回大约20px,这被CSS规则看起来更糟糕了!

此外,动画在10ms内继续播放,但由于在mouseup上循环将持续一段时间,因此它每15ms循环一次。

右边没有循环,因为我不知道怎么做左边,我不会浪费时间让它错误地向右滚动,因为我可以简单地让它在准备就绪时正确滚动。

我没有使用插件,因为我想学习如何自己动手(固执!)

1 个答案:

答案 0 :(得分:1)

分叉您的小提琴并添加代码a)消除滚动时的跳跃和b)检查并将第一个<li>添加到列表的末尾(如果有空格),同时向右滚动(下一个)

检查这个小提琴:http://jsfiddle.net/CRy4Q/15/