0

基本上,我正在尝试修复 Jquery Tools 1.2.6 Scrollable 的奇怪习惯,即如果项目的数量没有按滚动大小均匀划分,则滚动过去最后一个项目。

换句话说,如果我有一个包含 11 个项目的小部件,并且它设置为一次显示 2 个,并且每次单击下一个按钮以滚动到下一个 2 个项目时,当涉及到第 11 个项目时,它将滚动,所以第 11 个显示,但在第 12 个项目所在的右侧有一个空白区域。尽管没有第二项,但基本上将下一个 2 滚动到视图中

在这里,我有一个 jsFiddle 来演示我的修复:http: //jsfiddle.net/natepers/6kmuE/21/

scroll-size我设法通过将剩余的项目数重置为小于scroll-size;来让它停在最后一个项目上。

问题是我无法让它回到第一个项目。

这是javascript:

var scrollable = $(".scrollable").data("scrollable");
var size = scrollable.getConf().size;

// Catch any requests for items at the end of the list
scrollable.onSeek(function(event, index) {

    var self_size = this.getSize();

    // Last vsisible item
    var last = index + size;

    // How many to the last item
    var difference = self_size - last;

     // How many more than the scroll size
    var remainder = index%size;

    //reset scroll size for each request
    scrollable.getConf().size = size;


    // If next request has items but less than the scroll size
    if ( remainder == 0 && difference < size && difference > 0 ) {

            // Set the scroll size to th enumber of items left
           scrollable.getConf().size = difference;
    }
    //If we're at the end
    if (index++ === self_size - size) {

            // Set disabled style on next button
             $("a.next").addClass("disabled");   
    }
    //If the items are not evenly divided by the scroll size we know we're at the end
    if (remainder != 0) {

            // Set scroll size to the what's left 
            scrollable.getConf().size = remainder;        
    }
});

// Stop scrolling at last item
scrollable.onBeforeSeek(function(event, index) {
  var self_index = this.getIndex();
  var self_size = this.getSize();
  var last = self_index + size;
    //If the last visible item is the last item
  if (last == self_size) {
      // If the next requested item is >= the last item do nothing
      if (index > self_index) { return false; }
  }
});

感谢您的任何建议或帮助。

4

3 回答 3

3

我知道这是一个有点老的问题。我遇到了这种情况,上面建议的链接对我没有帮助。上面链接中描述的解决方案在显示固定数量的项目的情况下效果很好。

但是,如果显示的项目数量可以变化呢?我的任务涉及显示一堆可滚动的链接,这些链接一次滚动一个链接。链接文本的长度总是不同的。我无法知道一次将显示多少个项目。

这是我想出的插件解决方案:

    $.fn.restrictScroll = function () {

    var api = $(this).data("scrollable");
    var container = this;

    Init();

    // Initialization method.
    function Init() {
        // Subscribe to events we are interested in.
        api.onBeforeSeek(function (event, index) {
            return isScrollable(index);
        });
        api.onSeek(function (event, index) {
            changeNavButtonState(index);
        });
        $(window).resize(function () {
            var index = api.getIndex();
            changeNavButtonState(index);
        });

        // set up initial state of the nav button
        var index = api.getIndex();
        changeNavButtonState(index);
    }

    function changeNavButtonState(index) {
        var conf = api.getConf();
        $(conf.next).toggleClass(conf.disabledClass, !isScrollable(index));
    }

    function isScrollable(index) {

        var answer = false;
        var currentIndex = api.getIndex();

        if (index < currentIndex) { // if navigating back, always allow scroll.
            answer = true;
        }
        else {
            var items = api.getItems();
            var itemsWidth = 0;

            for (var i = currentIndex; i < items.length; i++) {
                itemsWidth += $(items[i]).width();
            }

            answer = itemsWidth > $(container).width();
        }

        return answer;
    }
}

这里是如何使用这个插件:

$("#scrollable").scrollable().restrictScroll();

示例 HTML:

    <div class="slidingTabs">
    <!-- "previous page" action -->
    <a class="prev browse left"></a>

    <div class="scrollable" id="scrollable">

        <!-- root element for the items -->
        <div class="items"">
            <div><a href="#">1 | Some small text</a></div>
            <div><a href="#">2 | Some long tab name</a></div>
            <div><a href="#">3 | Three is a crowd</a></div>
            <div><a href="#">4 | quick brown fox jumps</a></div>
            <div><a href="#">5 | Bollywood music is awesome</a></div>
            <div><a href="#">6 | Nicky Minaz is weird looking</a></div>
            <div><a href="#">7 | Tab number 7</a></div>
            <div><a href="#">8 | Tab number 8</a></div>
            <div><a href="#">9 | This one has real long name</a></div>
        </div>
    </div>

    <!-- "next page" action -->
    <a class="next browse right"></a>
</div>
于 2012-10-05T20:48:39.417 回答
0

我最近遇到了同样的问题。下面这篇博文中的解决方案在 jQuery Tools 1.2.6 中似乎对我很有效

http://www.jasoncarr.com/technology/jquery-tools-scrollable-stop-scrolling-past-the-end

于 2011-11-10T10:55:18.947 回答
0

当我遇到这个问题时,我正在寻找其他东西,我意识到这有点晚了,但几个月前我遇到了类似的问题,并找到了René Schubert的这个答案。建议的解决方案对我来说效果很好:

可滚动的 jQuery 工具:屏幕上显示 3 个项目,但一次滚动一个

干杯

于 2013-05-31T15:51:24.020 回答