jquery:如何修复快速滑动(旋转木马)?

时间:2013-10-02 13:17:53

标签: javascript jquery html css carousel

我使用jQuery构建了一个滑块,除了一个小问题之外它工作正常。 滑块在当前滑块完成移动之前快速移动。
特别是第二次和第三次幻灯片移动有问题

enter image description here

是否有人有解决方案或其他方法来解决此问题?

$.fx.speeds._default = 1000;
function slider(container) {
    var currPg = null,
        firstPg = null;
    container.find('> *').each(function (idx, pg) {
        pg = $(pg);
        var o = {
            testimonial: pg.find('> .testimonial'),
            thumb: pg.find('> .testimonial-thumb'),
            pg: pg
        };
        o.pg.css({
            position: 'absolute',
            width: '100%',
            height: '100%',
        });
        if (idx > 0) {
            o.pg.css({
                opacity: 0,
                    'z-index': -1
            });
            o.testimonial.css({
                'margin-left': '100%'
            });
            o.thumb.css({
                'bottom': '-100%'
            });
        } else {
            firstPg = o;
        }
        o.prev = currPg;
        if (currPg) {
            currPg.next = o;
        }
        currPg = o;
    });
    firstPg.prev = currPg;
    currPg.next = firstPg;
    currPg = firstPg;
    this.advance = function advance(duration) {
        console.log("advance!", this);
        var dur = duration || $.fx.speeds._default;
        var dur2 = Math.ceil(dur / 2);
        var dh = container.height();
        var dw = container.width();
        var nextPg = currPg.next;
        nextPg.pg.css({
            opacity: 1,
                'z-index': null
        });
        var _pg = currPg;
        currPg.testimonial.stop().animate({
            'margin-left': -dw
        }, dur, function () {
            _pg.pg.css({
                opacity: 0,
                    'z-index': -1
            });
            _pg = null;
        });
        nextPg.testimonial.stop()
            .css({
            'margin-left': dh
        })
            .animate({
            'margin-left': 0
        }, dur);
        currPg.thumb.stop().animate({
            'bottom': -dh
        }, dur2, function () {
            nextPg.thumb.stop()
                .css({
                'bottom': -dh
            })
                .animate({
                'bottom': 0
            }, dur2);
            nextPg = null;
        });
        currPg = nextPg;
    }
}
var s = new slider($('#banner'));
function scheduleNext() {
    setTimeout(function () {
        s.advance();
        scheduleNext();
    }, 5000);
}
scheduleNext();

演示http://jsfiddle.net/sweetmaanu/Pn2UB/13/

1 个答案:

答案 0 :(得分:2)

此时您正在将margin-left设置为容器height。修复此问题似乎可以解决这个问题。

    nextPg.testimonial.stop()
        .css({
        'margin-left': dh
    })
        .animate({
        'margin-left': 0
    }, dur);

应该是

    nextPg.testimonial.stop()
        .css({
        'margin-left': dw
    })
        .animate({
        'margin-left': 0
    }, dur);