M
M
mishapsv2016-01-14 15:56:28
JavaScript
mishapsv, 2016-01-14 15:56:28

Why doesn't scrollTop fire on fast scroll?

If I scroll up smoothly, the red block gets smaller, i.e. works fine, but if it's fast, then for some reason it skips.
Help me to understand?
codepen.io/anon/pen/MKvZad

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
Kostya Gorozhanov, 2016-01-14
@mishapsv

$(window).scroll(function () {
  var s = $(window).scrollTop();
  if (s > 10) {
    $('.header__navbar').stop( true, true ).animate({
      height: "180px"
    },{duration: 100, queue: false});

  } else if (s <= 10) {
    $('.header__navbar').stop( true, true ).animate({
      height: '130px'
    },{duration: 10, queue: false});
  }
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question