最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - mCustomScrollbar get scroll position - Stack Overflow

programmeradmin4浏览0评论

Iam using mCustomScrollbar , I want to know whether my scroll bar position is at bottom using jquery.How is that possible?Can i use ordinary bottom check usage in jquery or any functions are available in the mCustomScrollbar library?

Iam using mCustomScrollbar , I want to know whether my scroll bar position is at bottom using jquery.How is that possible?Can i use ordinary bottom check usage in jquery or any functions are available in the mCustomScrollbar library?

Share Improve this question asked Jun 29, 2014 at 8:11 freakydevfreakydev 1532 gold badges2 silver badges11 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

Look at callbacks example - there is Scroll percentage that displays % of scrolled. Open HTML source and you will see that it's uses whileScrolling callback: $("#mcs-top-pct").text(this.mcs.topPct+"%");, so when this.mcs.topPct is 100, then container is scrolled to bottom :)

I used to myself something like:

$('#someElement').mCustomScrollbar({theme: "minimal"});

and after, you can get scrollTop using this code:

var scrollTop = $('#someElement').find(".mCSB_dragger").position().top;

You can calculate scrollTop from dragger's top position:

    var $scrollerOuter  = $( '.mCustomScrollbar' );
    var $dragger        = $scrollerOuter.find( '.mCSB_dragger' );
    var scrollHeight    = $scrollerOuter.find( '.mCSB_container' ).height();
    var draggerTop      = $dragger.position().top;

    var scrollTop = draggerTop / ($scrollerOuter.height() - $dragger.height()) * (scrollHeight - $scrollerOuter.height());
发布评论

评论列表(0)

  1. 暂无评论