3

iScroll 不会水平滚动 div 的整个宽度。它停在错误的宽度值上,我似乎无法找到该值的来源。主滚动 div 宽度没有改变,所以我不需要调用refresh().

本质上,我在滚动 div 中有一个 div,它正在改变大小,所以里面的 div 可以更改为绝对位置,而里面的其他 div 最初是向右浮动的。我不想使用 iScroll,但这是必要的,因为我正在使用 Trigger.io 构建 HTML5 iOS WebView 应用程序。

http://jsfiddle.net/simpleshadow/wQQEM/15/

var myScrollers = [];
$(function() {

    var scrolls = $('.scrolls');

    $.each(scrolls, function(i, value) {
        var self = this,
            imageDiv = $(this).find('.imageDiv'),
            imageWrapper = $(this).find('.imageWrapper'),
            images = $(this).find('.imageDiv img'),
            width = 0;

        $.each(images, function(index, value){
            width += $(this).width();
        });
        imageDiv.css('right', (-$(this).width()+images.first().width()) + 'px');
        imageWrapper.width(images.first().width());

        myScrollers[i] = new iScroll($(this)[0], { 
            hScroll: true, 
            vScroll: false, 
            hScrollbar: false, 
            vScrollbar: false,
            onScrollMove: function(e){
                var x = 0;
                -myScrollers[i].x >= 0 ? x = -myScrollers[i].x : x = 0;
                updateWindow($(self), x);
            },
            onScrolling: function(e) {
                var x = 0;
                -myScrollers[i].x >= 0 ? x = -myScrollers[i].x : x = 0;
                updateWindow($(self), x);
            }
        });

    });

    // Update the window
    function updateWindow(el, x) {

        var x = x,
            width = 0,
            imageDiv = el.find('.imageDiv'),
            imageWrapper = el.find('.imageWrapper'),
            images = el.find('.imageDiv img');

        el.find('.imageDiv, .imageDiv img').css({
            height: (x/160)*75+75 >= 150 ? 150 : (x/160)*75+75
        });

        for (var i = 0, l = images.length; i < l; i++) {
            width += $(images[i]).width();
            if (imageWrapper.width() >= width && i !== 0) {
                $(images[i]).addClass('out').css({
                    left: (width-$(images[i]).outerWidth(true)) + 'px'
                });
            } else {
                i !== 0 && $(images[i]).removeClass('out').css({
                    left: 0
                });
            }
        }

        if (x+images.first().width() <= width) imageWrapper.width(x+images.first().width());
        imageDiv.css('right', (-$(this).width()+images.first().width()) + 'px');

    }

});
4

0 回答 0