0

我已经使用 jQuery 构建了一个滑块,除了一个小问题外,它工作正常。滑块在当前滑块完成移动之前快速移动。
尤其是第二个和第三个滑动动作有问题

在此处输入图像描述

有没有人有解决这个问题的解决方案或替代方案?

$.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/

4

1 回答 1

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);
于 2013-10-02T13:40:18.770 回答