ユーザーが特定の要素にスクロールしたときにイベントをトリガーする-jQueryを使用


83

ページのはるか下にあるh1があります。

<h1 id="scroll-to">TRIGGER EVENT WHEN SCROLLED TO.</h1>

そして、ユーザーがh1にスクロールしたとき、またはブラウザーのビューにアラートが表示されたときにアラートをトリガーしたいと思います。

$('#scroll-to').scroll(function() {
     alert('you have scrolled to the h1!');
});

どうすればこれを行うことができますか?

回答:


149

offset要素のを計算し、それを次のscrollような値と比較できます。

$(window).scroll(function() {
   var hT = $('#scroll-to').offset().top,
       hH = $('#scroll-to').outerHeight(),
       wH = $(window).height(),
       wS = $(this).scrollTop();
   if (wS > (hT+hH-wH)){
       console.log('H1 on the view!');
   }
});

このデモフィドルを確認してください


デモフィドルを更新しましたアラートなし-代わりにFadeIn()要素


要素がビューポート内にあるかどうかを確認するようにコードを更新しました。したがって、これは、上下にスクロールしてifステートメントにいくつかのルールを追加する場合でも機能します。

   if (wS > (hT+hH-wH) && (hT > wS) && (wS+wH > hT+hH)){
       //Do something
   }

デモフィドル


14
これをデバウンスしてください!
Frambot 2014

1
jQuery Waypointのような関数としてこれを行うパッケージライブラリはありますか?
Karl Coelho 2014

1
@DaniPに感謝します。クールなスニペット!
Anahit DEV 2016

2
@ClosDesignを使用.off()して、イベントのバインドを解除できますjsfiddle.net/n4pdx/543
DaniP 2016

1
@DaniPやったばかり、ありがとう!そして答えてくれてありがとう、私を大いに助けてくれました:)
パオロ

30

この質問を、ユーザーがページの特定の部分を超えてスクロールしたときのjQueryトリガーアクションからのベストアンサーと組み合わせる

var element_position = $('#scroll-to').offset().top;

$(window).on('scroll', function() {
    var y_scroll_pos = window.pageYOffset;
    var scroll_pos_test = element_position;

    if(y_scroll_pos > scroll_pos_test) {
        //do stuff
    }
});

更新

要素が画面の最上部ではなく画面の半分上にあるときにトリガーされるようにコードを改善しました。また、ユーザーが画面の下部を押して関数がまだ起動されていない場合にも、コードがトリガーされます。

var element_position = $('#scroll-to').offset().top;
var screen_height = $(window).height();
var activation_offset = 0.5;//determines how far up the the page the element needs to be before triggering the function
var activation_point = element_position - (screen_height * activation_offset);
var max_scroll_height = $('body').height() - screen_height - 5;//-5 for a little bit of buffer

//Does something when user scrolls to it OR
//Does it when user has reached the bottom of the page and hasn't triggered the function yet
$(window).on('scroll', function() {
    var y_scroll_pos = window.pageYOffset;

    var element_in_view = y_scroll_pos > activation_point;
    var has_reached_bottom_of_page = max_scroll_height <= y_scroll_pos && !element_in_view;

    if(element_in_view || has_reached_bottom_of_page) {
        //Do something
    }
});

9

あなたの最善の策は、まさにそれを行う既存のライブラリを活用することだと思います。

http://imakewebthings.com/waypoints/

要素がビューポートの上部に当たったときに起動するリスナーを要素に追加できます。

$('#scroll-to').waypoint(function() {
 alert('you have scrolled to the h1!');
});

使用中のそれの驚くべきデモのために:

http://tympanus.net/codrops/2013/07/16/on-scroll-header-effects/


1
私はすでにこれを試しました。要素を過去にスクロールした場合にのみトリガーされます。他の解決策はありますか?
Karl Coelho 2014

このソリューションは推奨事項を取得するのにうまく機能し、私はそれを本番環境で使用しました。ブログを参照してください:liyao13.wordpress.com/2017/05/11/…–
Yao Li


4

これはすべてのデバイスに使用できますが、

$(document).on('scroll', function() {
    if( $(this).scrollTop() >= $('#target_element').position().top ){
        do_something();
    }
});

4

スクロールが成功した後、スクロールを1回だけ発射します

受け入れられた答えは私にとってはうまくいきました(90%)が、実際に1回だけ発砲するには、少し調整する必要がありました。

$(window).on('scroll',function() {
            var hT = $('#comment-box-section').offset().top,
                hH = $('#comment-box-section').outerHeight(),
                wH = $(window).height(),
                wS = $(this).scrollTop();

            if (wS > ((hT+hH-wH)-500)){
                console.log('comment box section arrived! eh');
                // After Stuff
                $(window).off('scroll');
                doStuff();
            }

        });

:スクロールが成功したということは、ユーザーが私の要素にスクロールしたとき、つまり私の要素が表示されているときを意味します。



2

これはあなたが必要とするものでなければなりません。

Javascript:

$(window).scroll(function() {
    var hT = $('#circle').offset().top,
        hH = $('#circle').outerHeight(),
        wH = $(window).height(),
        wS = $(this).scrollTop();
    console.log((hT - wH), wS);
    if (wS > (hT + hH - wH)) {
        $('.count').each(function() {
            $(this).prop('Counter', 0).animate({
                Counter: $(this).text()
            }, {
                duration: 900,
                easing: 'swing',
                step: function(now) {
                    $(this).text(Math.ceil(now));
                }
            });
        }); {
            $('.count').removeClass('count').addClass('counted');
        };
    }
});

CSS:

#circle
{
    width: 100px;
    height: 100px;
    background: blue;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    float:left;
    margin:5px;
}
.count, .counted
{
  line-height: 100px;
  color:white;
  margin-left:30px;
  font-size:25px;
}
#talkbubble {
   width: 120px;
   height: 80px;
   background: green;
   position: relative;
   -moz-border-radius:    10px;
   -webkit-border-radius: 10px;
   border-radius:         10px;
   float:left;
   margin:20px;
}
#talkbubble:before {
   content:"";
   position: absolute;
   right: 100%;
   top: 15px;
   width: 0;
   height: 0;
   border-top: 13px solid transparent;
   border-right: 20px solid green;
   border-bottom: 13px solid transparent;
}

HTML:

<div id="talkbubble"><span class="count">145</span></div>
<div style="clear:both"></div>
<div id="talkbubble"><span class="count">145</span></div>
<div style="clear:both"></div>
<div id="circle"><span class="count">1234</span></div>

このbootplyを確認してください:http://www.bootply.com/atin_agarwal2/cJBywxX5Qp


2

交差点オブザーバーはIMOにとって最良のものであり、外部ライブラリがなくても非常に効果的です。

const options = {
            root: null,
            threshold: 0.25, // 0 - 1 this work as a trigger. 
            rootMargin: '150px'
        };

        const target = document.querySelector('h1#scroll-to');
        const observer = new IntersectionObserver(
           entries => { // each entry checks if the element is the view or not and if yes trigger the function accordingly
            entries.forEach(() => {
                alert('you have scrolled to the h1!')
            });
        }, options);
        observer.observe(target);

1

スクロール位置に基づいて多くの機能を実行している場合、スクロールマジック(http://scrollmagic.io/)は完全にこの目的のために構築されています。

スクロール時にユーザーが特定の要素に到達したときに基づいて、JSを簡単にトリガーできます。また、視差スクロールWebサイトに最適なGSAPアニメーションエンジン(https://greensock.com/)とも統合されています。


1

デバイスのビューポートの境界を超えることがある要素を扱う人のために、DaniPの答えを簡単に変更するだけです。

わずかな条件付きを追加-ビューポートよりも大きい要素の場合、上半分がビューポートを完全に満たすと、要素が表示されます。

function elementInView(el) {
  // The vertical distance between the top of the page and the top of the element.
  var elementOffset = $(el).offset().top;
  // The height of the element, including padding and borders.
  var elementOuterHeight = $(el).outerHeight();
  // Height of the window without margins, padding, borders.
  var windowHeight = $(window).height();
  // The vertical distance between the top of the page and the top of the viewport.
  var scrollOffset = $(this).scrollTop();

  if (elementOuterHeight < windowHeight) {
    // Element is smaller than viewport.
    if (scrollOffset > (elementOffset + elementOuterHeight - windowHeight)) {
      // Element is completely inside viewport, reveal the element!
      return true;
    }
  } else {
    // Element is larger than the viewport, handle visibility differently.
    // Consider it visible as soon as it's top half has filled the viewport.
    if (scrollOffset > elementOffset) {
      // The top of the viewport has touched the top of the element, reveal the element!
      return true;
    }
  }
  return false;
}

受け入れられた回答で使用されている場合でも、わかりにくい変数名を使用することをお勧めします。
weirdan 2017

0

私はいつも同じコードを使用しているので、それを実行する単純なjqueryプラグインを追加しました。長さ480バイト、高速。実行時に分析されるバインドされた要素のみ。

https://www.npmjs.com/package/jquery-on-scrolled-to

そうなる $('#scroll-to').onScrolledTo(0, function() { alert('you have scrolled to the h1!'); });

または、h1の半分が表示されたときにアラートを出す必要がある場合は、0ではなく0.5を使用します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.