使用 Tiny Scrollbar 自动滚动到 div 的底部 [英] Automatically scroll to bottom of div using Tiny Scrollbar

查看:14
本文介绍了使用 Tiny Scrollbar 自动滚动到 div 的底部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在编写一个喊话框并使其尽可能用户友好.它使用 jQuery 的 Tiny Scrollbar 插件,我想加入一个额外的功能,让我可以使其进入 div 的底部.它应该会自动滚动(可能带有平滑的动画效果)到底部.

I'm coding a shoutbox and making it as user friendly as possible. It uses the Tiny Scrollbar plugin for jQuery and I want to incorporate an extra function that will allow me to make it go to the bottom of the div. It should automatically scroll (possibly with a smooth animated effect) to the bottom.

这是实际的小滚动条代码:

Here is the actual tiny scrollbar code:

(function($){
$.tiny = $.tiny || { };

$.tiny.scrollbar = {
    options: {  
        axis: 'y', // vertical or horizontal scrollbar? ( x || y ).
        wheel: 40,  //how many pixels must the mouswheel scroll at a time.
        scroll: true, //enable or disable the mousewheel;
        size: 'auto', //set the size of the scrollbar to auto or a fixed number.
        sizethumb: 'auto' //set the size of the thumb to auto or a fixed number.
    }
};  

$.fn.tinyscrollbar = function(options) { 
    var oElement = null;
    var options = $.extend({}, $.tiny.scrollbar.options, options); 

    this.each(function() {  
        oElement = new Scrollbar($(this), options);
    });
    return $.extend(this, oElement);
};

function Scrollbar(root, options){
    var oSelf = this;
    var oWrapper = root;
    var oViewport = { obj: $('.viewport', root) };
    var oContent = { obj: $('.overview', root) };
    var oScrollbar = { obj: $('.scrollbar', root) };
    var oTrack = { obj: $('.track', oScrollbar.obj) };
    var oThumb = { obj: $('.thumb', oScrollbar.obj) };
    var sAxis = options.axis == 'x', sDirection = sAxis ? 'left' : 'top', sSize = sAxis ? 'Width' : 'Height';
    var iScroll, iPosition = { start: 0, now: 0 }, iMouse = {};

    function initialize() { 
        oSelf.update();
        setEvents();
        return oSelf;
    }
    this.update = function(bKeepScroll){            
        oViewport[options.axis] = oViewport.obj[0]['offset'+ sSize];
        oContent[options.axis] = oContent.obj[0]['scroll'+ sSize];
        oContent.ratio = oViewport[options.axis] / oContent[options.axis];
        oScrollbar.obj.toggleClass('disable', oContent.ratio >= 1);
        oTrack[options.axis] = options.size == 'auto' ? oViewport[options.axis] : options.size;
        oThumb[options.axis] = Math.min(oTrack[options.axis], Math.max(0, ( options.sizethumb == 'auto' ? (oTrack[options.axis] * oContent.ratio) : options.sizethumb )));
        oScrollbar.ratio = options.sizethumb == 'auto' ? (oContent[options.axis] / oTrack[options.axis]) : (oContent[options.axis] - oViewport[options.axis]) / (oTrack[options.axis] - oThumb[options.axis]);
        iScroll = (bKeepScroll && oContent.ratio <= 1) ? Math.min((oContent[options.axis] - oViewport[options.axis]), Math.max(0, iScroll)) : 0;
        setSize();
    }
    function setSize(){
        oThumb.obj.css(sDirection, iScroll / oScrollbar.ratio);
        oContent.obj.css(sDirection, -iScroll);
        iMouse['start'] = oThumb.obj.offset()[sDirection];
        var sCssSize = sSize.toLowerCase(); 
        oScrollbar.obj.css(sCssSize, oTrack[options.axis]);
        oTrack.obj.css(sCssSize, oTrack[options.axis]);
        oThumb.obj.css(sCssSize, oThumb[options.axis]);     
    };      
    function setEvents(){
        oThumb.obj.bind('mousedown', start);
        oThumb.obj[0].ontouchstart = function(oEvent){
            oEvent.preventDefault();
            oThumb.obj.unbind('mousedown');
            start(oEvent.touches[0]);
            return false;
        }           
        oTrack.obj.bind('mouseup', drag);
        if(options.scroll && this.addEventListener){
            oWrapper[0].addEventListener('DOMMouseScroll', wheel, false);
            oWrapper[0].addEventListener('mousewheel', wheel, false );
        }
        else if(options.scroll){oWrapper[0].onmousewheel = wheel;}
    };
    function start(oEvent){
        iMouse.start = sAxis ? oEvent.pageX : oEvent.pageY;
        var oThumbDir = parseInt(oThumb.obj.css(sDirection));
        iPosition.start = oThumbDir == 'auto' ? 0 : oThumbDir;
        $(document).bind('mousemove', drag);
        document.ontouchmove = function(oEvent){
            $(document).unbind('mousemove');
            drag(oEvent.touches[0]);
        };
        $(document).bind('mouseup', end);
        oThumb.obj.bind('mouseup', end);
        oThumb.obj[0].ontouchend = document.ontouchend = function(oEvent){
            $(document).unbind('mouseup');
            oThumb.obj.unbind('mouseup');
            end(oEvent.touches[0]);
        }
        return false;
    };      
    function wheel(oEvent){
        if(!(oContent.ratio >= 1)){
            oEvent = $.event.fix(oEvent || window.event);
            var iDelta = oEvent.wheelDelta ? oEvent.wheelDelta/120 : -oEvent.detail/3;
            iScroll -= iDelta * options.wheel;
            iScroll = Math.min((oContent[options.axis] - oViewport[options.axis]), Math.max(0, iScroll));
            oThumb.obj.css(sDirection, iScroll / oScrollbar.ratio);
            oContent.obj.css(sDirection, -iScroll);
            oEvent.preventDefault();
        };
    };
    function end(oEvent){
        $(document).unbind('mousemove', drag);
        $(document).unbind('mouseup', end);
        oThumb.obj.unbind('mouseup', end);
        document.ontouchmove = oThumb.obj[0].ontouchend = document.ontouchend = null;
        return false;
    };
    function drag(oEvent){
        if(!(oContent.ratio >= 1)){
            iPosition.now = Math.min((oTrack[options.axis] - oThumb[options.axis]), Math.max(0, (iPosition.start + ((sAxis ? oEvent.pageX : oEvent.pageY) - iMouse.start))));
            iScroll = iPosition.now * oScrollbar.ratio;
            oContent.obj.css(sDirection, -iScroll);
            oThumb.obj.css(sDirection, iPosition.now);;
        }
        return false;
    };

    return initialize();
};
 })(jQuery);

如果你能修改它来做到这一点,我将永远感激不尽!

If you could modify it to do this, I would be eternally grateful!

推荐答案

$('.overview:first').css({top: (($('.overview:first').height() - $('.viewport:first').height()) * (-1)) });
$('.thumb:first').css({top: $('.track:first').height() - $('.thumb:first').height()});

这篇关于使用 Tiny Scrollbar 自动滚动到 div 的底部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆