在网上找到此代码。想要对其进行修改以使其在鼠标按钮按下时连续滚动div,而在鼠标按钮按下时停止滚动。我尝试了这个:


从click事件更改为mousedown事件。那没有做。
在函数内添加了对同一函数的调用。那也没有做到。


我应该在此功能中进行哪些修改,以使鼠标连续滚动?

(function ($) {
    var vscrollid = 0;
    $.fn.vScroll = function (options) {
        var options = $.extend({}, { speed: 500, height: 300, upID: "#up-arrow", downID: "#bottom-arrow", cycle: true }, options);

        return this.each(function () {
            vscrollid++;
            obj = $(this);
            var newid = vscrollid;

            obj.css("overflow", "hidden");
            obj.css("position", "relative");
            obj.css("height", options.height + "px");
            obj.children().each(
                function (intIndex) {
                    $(this).addClass("vscroll-" + vscrollid + "-" + intIndex);
                });


            var itemCount = 0;

            $(options.downID).click(function () {
                var nextCount = itemCount + 1;
                if ($('.vscroll-' + newid + '-' + nextCount).length) {
                    var divH = $('.vscroll-' + newid + '-' + itemCount).outerHeight();
                    itemCount++;
                    $("#vscroller-" + newid).animate({
                        top: "-=" + divH + "px"
                    }, options.speed);
                }
                else {
                    if (options.cycle) {
                        itemCount = 0;
                        $("#vscroller-" + newid).animate({
                            top: "0" + "px"
                        }, options.speed);
                    }
                }
            });

            $(options.upID).click(function () {
                var prevCount = itemCount - 1;
                if ($('.vscroll-' + newid + '-' + prevCount).length) {
                    itemCount--;
                    var divH = $('.vscroll-' + newid + '-' + itemCount).outerHeight();
                    $("#vscroller-" + newid).animate({
                        top: "+=" + divH + "px"
                    }, options.speed);
                }
            });

            obj.children().wrapAll("<div style='position: relative; top: 0' id='vscroller-" + vscrollid + "'></div>");
        });

    };

})(jQuery);

/*
* jQuery vScroll
* Copyright (c) 2011 Simon Hibbard
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:

* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/

/*
* Version: V1.2.0
* Release: 10-02-2011
* Based on jQuery 1.4.2
*/

最佳答案

能够使用更简单的代码进行连续滚动。

    <script type="text/javascript">
                $(document).ready(function($) {
                   $(".scrolling_prev", $("#'.$node['ID'].'")).mousedown(function() {
                        startScrolling($(".link_drop_box", $("#'.$node['ID'].'")), "-=50px");
                    }).mouseup(function() {
                        $(".link_drop_box", $("#'.$node['ID'].'")).stop()
                    });
                    $(".scrolling_next", $("#'.$node['ID'].'")).mousedown(function() {
                        startScrolling($(".link_drop_box", $("#'.$node['ID'].'")), "+=50px");
                    }).mouseup(function() {
                        $(".link_drop_box", $("#'.$node['ID'].'")).stop();
                    });
                });
    </script>

10-07 19:40
查看更多