web-dev-qa-db-ja.com

スクロール方向の検出

だから私はJavaScriptのon scrollを使って関数を呼び出そうとしています。しかし、jQueryを使わなくてもスクロールの方向を検出できるかどうかを知りたかったのです。そうでない場合、それから何か回避策はありますか?

私は単に「上へ」ボタンを配置することを考えていましたが、できればそれを避けたいと思います。

私は今このコードを使ってみましたが、うまくいきませんでした:

if document.body.scrollTop <= 0 {
    alert ("scrolling down")
} else {
    alert ("scrolling up")
}
82
dwinnbrown

前のscrollTop値を格納し、現在のscrollTop値とそれを比較することで検出できます。

JS:

var lastScrollTop = 0;
// element should be replaced with the actual target element on which you have applied scroll, use window in case of no target element.
element.addEventListener("scroll", function(){ // or window.addEventListener("scroll"....
   var st = window.pageYOffset || document.documentElement.scrollTop; // Credits: "https://github.com/qeremy/so/blob/master/so.dom.js#L426"
   if (st > lastScrollTop){
      // downscroll code
   } else {
      // upscroll code
   }
   lastScrollTop = st <= 0 ? 0 : st; // For Mobile or negative scrolling
}, false);
116
Prateek

すべてのスクロールイベント(タッチとホイール)を捉える簡単な方法

window.onscroll = function(e) {
  // print "false" if direction is down and "true" if up
  console.log(this.oldScroll > this.scrollY);
  this.oldScroll = this.scrollY;
}
36
IT VLOG

これを使ってスクロール方向を見つけます。これは垂直スクロールの方向を見つけるためだけのものです。すべてのクロスブラウザをサポートしています。

    var scrollableElement = document.getElementById('scrollableElement');

    scrollableElement.addEventListener('wheel', findScrollDirectionOtherBrowsers);

    function findScrollDirectionOtherBrowsers(event){
        var delta;

        if (event.wheelDelta){
            delta = event.wheelDelta;
        }else{
            delta = -1 * event.deltaY;
        }

        if (delta < 0){
            console.log("DOWN");
        }else if (delta > 0){
            console.log("UP");
        }

    }

18
Vasi

これは、prateekが答えたものへの追加です。IEのコードにグリッチがあるように思われるので、私はそれを少しも空想的に変更することにしました(別の条件)

$('document').ready(function() {
var lastScrollTop = 0;
$(window).scroll(function(event){
   var st = $(this).scrollTop();
   if (st > lastScrollTop){
       console.log("down")
   }
   else if(st == lastScrollTop)
   {
     //do nothing 
     //In IE this is an important condition because there seems to be some instances where the last scrollTop is equal to the new one
   }
   else {
      console.log("up")
   }
   lastScrollTop = st;
});});
7
Emmanual

あなたはこれをやってみることができます。

function scrollDetect(){
  var lastScroll = 0;

  window.onscroll = function() {
      let currentScroll = document.documentElement.scrollTop || document.body.scrollTop; // Get Current Scroll Value

      if (currentScroll > 0 && lastScroll <= currentScroll){
        lastScroll = currentScroll;
        document.getElementById("scrollLoc").innerHTML = "Scrolling DOWN";
      }else{
        lastScroll = currentScroll;
        document.getElementById("scrollLoc").innerHTML = "Scrolling UP";
      }
  };
}


scrollDetect();
html,body{
  height:100%;
  width:100%;
  margin:0;
  padding:0;
}

.cont{
  height:100%;
  width:100%;
}

.item{
  margin:0;
  padding:0;
  height:100%;
  width:100%;
  background: #ffad33;
}

.red{
  background: red;
}

p{
  position:fixed;
  font-size:25px;
  top:5%;
  left:5%;
}
<div class="cont">
  <div class="item"></div>
  <div class="item red"></div>
  <p id="scrollLoc">0</p>
</div>
5
davecar21
  1. OldValueを初期化します
  2. イベントをリッスンしてnewValueを取得します
  3. 2を引く
  4. 結果から結論を出す
  5. NewValueでoldValueを更新します。

//初期化

let oldValue = 0;

//イベントを聴く

window.addEventListener('scroll', function(e){

    // Get the new Value
    newValue = window.pageYOffset;

    //Subtract the two and conclude
    if(oldValue - newValue < 0){
        console.log("Up");
    } else if(oldValue - newValue > 0){
        console.log("Down");
    }

    // Update the old value
    oldValue = newValue;
});
2
Logan

スクロールバーの位置はdocument.documentElement.scrollTopを使って取得できます。そしてそれは前のポジションと比較するだけの問題です。

2
Igal S.

私は個人的にこのコードを使用してjavascriptのスクロール方向を検出します... lastscrollvalueを保存する変数を定義し、このif&elseを使用するだけです

let lastscrollvalue;

function headeronscroll() {

    // document on which scroll event will occur
    var a = document.querySelector('.refcontainer'); 

    if (lastscrollvalue == undefined) {

        lastscrollvalue = a.scrollTop;

        // sets lastscrollvalue
    } else if (a.scrollTop > lastscrollvalue) {

        // downscroll rules will be here
        lastscrollvalue = a.scrollTop;

    } else if (a.scrollTop < lastscrollvalue) {

        // upscroll rules will be here
        lastscrollvalue = a.scrollTop;

    }
}
0
WagonWolf