web-dev-qa-db-ja.com

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

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

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

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

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

どうすればいいですか?

60
Karl Coelho

要素の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!');
   }
});

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


Demo Fiddle アラートなし-代わりにFadeIn()要素を更新


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

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

デモフィドル

115
DaniP

この質問と ユーザーがページの特定の部分をスクロールしたときの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
    }
});

UPDATE

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

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
    }
});
20
Daniel Tonon

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

http://imakewebthings.com/jquery-waypoints/

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

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

使用中のすばらしいデモの場合:

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

7
Mister Epic

Inviewライブラリはイベントをトリガーし、jquery 1.8以降で適切に動作します! https://github.com/protonet/jquery.inview

$('div').on('inview', function (event, visible) {
  if (visible == true) {
    // element is now visible in the viewport
  } else {
    // element has gone out of viewport
  }
});

これを読む https://remysharp.com/2009/01/26/element-in-view-event-plugin

5
Dima Melnik

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

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>

このブートプライを確認してください: http://www.bootply.com/atin_agarwal2/cJBywxX5Qp

2
Atin Agarwal

次のようにinviewイベントで jQueryプラグイン を使用できます。

jQuery('.your-class-here').one('inview', function (event, visible) {
    if (visible == true) {
      //Enjoy !
    }
});

リンク: https://remysharp.com/2009/01/26/element-in-view-event-plugin

2
Mehdi

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;
}
1
Allan of Sydney

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

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

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

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

0
Daniel Tonon

スクロールが成功した後、1回だけスクロールを開始

受け入れられた答えは私のために働いた(90%)が、実際に一度だけ発射するために少し微調整する必要があった。

$(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();
            }

        });

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

0
Junaid