web-dev-qa-db-ja.com

JavaScriptで垂直スクロールの割合を決定するクロスブラウザーメソッド

ユーザーが任意の時点で移動した垂直スクロールバーの割合を知るにはどうすればよいですか?

ユーザーがページを下にスクロールしたときに発生するonscrollイベントをトラップするのは簡単ですが、そのイベント内でどのくらいスクロールしたかを確認するにはどうすればよいですか?この場合、パーセンテージは特に重要です。 IE6のソリューションについては特に心配していません。

主要なフレームワーク(Dojo、jQuery、Prototype、Mootools)のいずれかが、これを単純なクロスブラウザ互換の方法で公開しますか?

45
majelbstoat

2016年10月:修正されました。 jsbinデモの括弧が答えから欠落していました。 エラー

Chrome、Firefox、IE9以降。 jsbinのライブデモ

var h = document.documentElement, 
    b = document.body,
    st = 'scrollTop',
    sh = 'scrollHeight';

var percent = (h[st]||b[st]) / ((h[sh]||b[sh]) - h.clientHeight) * 100;

関数として:

function getScrollPercent() {
    var h = document.documentElement, 
        b = document.body,
        st = 'scrollTop',
        sh = 'scrollHeight';
    return (h[st]||b[st]) / ((h[sh]||b[sh]) - h.clientHeight) * 100;
}

jQuery(元の回答)をご希望の場合:

$(window).on('scroll', function(){
  var s = $(window).scrollTop(),
      d = $(document).height(),
      c = $(window).height();

  var scrollPercent = (s / (d - c)) * 100;
  
  console.clear();
  console.log(scrollPercent);
})
html{ height:100%; }
body{ height:300%; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
100
Phil Ricketts

ライブラリに依存しない良い解決策を見つけたと思います:

/**
 * Get current browser viewpane heigtht
 */
function _get_window_height() {
    return window.innerHeight || 
           document.documentElement.clientHeight ||
           document.body.clientHeight || 0;
}

/**
 * Get current absolute window scroll position
 */
function _get_window_Yscroll() {
    return window.pageYOffset || 
           document.body.scrollTop ||
           document.documentElement.scrollTop || 0;
}

/**
 * Get current absolute document height
 */
function _get_doc_height() {
    return Math.max(
        document.body.scrollHeight || 0, 
        document.documentElement.scrollHeight || 0,
        document.body.offsetHeight || 0, 
        document.documentElement.offsetHeight || 0,
        document.body.clientHeight || 0, 
        document.documentElement.clientHeight || 0
    );
}


/**
 * Get current vertical scroll percentage
 */
function _get_scroll_percentage() {
    return (
        (_get_window_Yscroll() + _get_window_height()) / _get_doc_height()
    ) * 100;
}
24
Eduardo

これでうまくいくはずです。ライブラリは必要ありません。

function currentScrollPercentage()
{
    return ((document.documentElement.scrollTop + document.body.scrollTop) / (document.documentElement.scrollHeight - document.documentElement.clientHeight) * 100);
}
9
Mark Bell

これらはChrome 19.0、FF12、IE9で完璧に機能しました:

function getElementScrollScale(domElement){
        return domElement.scrollTop / (domElement.scrollHeight - domElement.clientHeight);
    }

function setElementScrollScale(domElement,scale){
        domElement.scrollTop = (domElement.scrollHeight - domElement.clientHeight) * scale;
    }
5
toske

この質問は長い間ここにありますが、同じ問題を解決しようとしているときに偶然見つけました。これが私がjQueryでどのように解決したかです:

最初に、スクロールしたいものをdivでラップしました(セマンティックではありませんが、役立ちます)。次に、ラッパーにオーバーフローと高さを設定します。

<div class="content-wrapper" style="overflow: scroll; height:100px">
    <div class="content">Lot of content that scrolls</div>
</div>

最後に、これらのメトリックから%スクロールを計算することができました。

var $w = $(this),
    scroll_top = $w.scrollTop(),
    total_height = $w.find(".content").height(),        
    viewable_area = $w.height(),
    scroll_percent = Math.floor((scroll_top + viewable_area) / total_height * 100);                

これが実際の例のフィドルです: http://jsfiddle.net/prEGf/

2
timemachine3030

Dojoを使用している場合は、次のことができます。

var vp = dijit.getViewport();
return (vp.t / (document.documentElement.scrollHeight - vp.h));

0と1の間の値を返します。

2
majelbstoat

まず、追跡したいドキュメントにイベントリスナーをアタッチします

yourDocument.addEventListener("scroll", documentEventListener, false);

次に:

function documentEventListener(){
  var currentDocument  = this;
  var docsWindow       = $(currentDocument.defaultView); // This is the window holding the document
  var docsWindowHeight = docsWindow.height(); // The viewport of the wrapper window
  var scrollTop        = $(currentDocument).scrollTop(); // How much we scrolled already, in the viewport
  var docHeight        = $(currentDocument).height();    // This is the full document height.

  var howMuchMoreWeCanScrollDown = docHeight - (docsWindowHeight + scrollTop);
  var percentViewed = 100.0 * (1 - howMuchMoreWeCanScrollDown / docHeight);
  console.log("More to scroll: "+howMuchMoreWeCanScrollDown+"pixels. Percent Viewed: "+percentViewed+"%");
}
0
Nadav B

TypeScript実装。

function getScrollPercent(event: Event): number {
  const {target} = event;
  const {documentElement, body} = target as Document;
  const {scrollTop: documentElementScrollTop, scrollHeight: documentElementScrollHeight, clientHeight} = documentElement;
  const {scrollTop: bodyScrollTop, scrollHeight: bodyScrollHeight} = body;
  const percent = (documentElementScrollTop || bodyScrollTop) / ((documentElementScrollHeight || bodyScrollHeight) - clientHeight) * 100;
  return Math.ceil(percent);
}
0
Dave