仅在向下滚动到*** px时才使元素可见

时间:2012-07-05 08:47:01

标签: jquery

我在网站上使用滚动到顶部按钮。我正在使用这个Jquery

    $(window).scroll(function() {
    if ($(this).scrollTop()) {
        $('#cttm:hidden').stop(true, true).fadeIn();
    } else {
        $('#cttm').stop(true, true).fadeOut();
    }
});


  $(document).ready(function(){
      var bottom = ($(window).outerHeight() - $(window).height()) - 150; // 150 pixel to the bottom of the page; 
      $(window).scroll(function(){
          if ($(window).scrollTop() >= bottom ) {
                  $("#cttm").fadeTo("slow",.95);
             } else {
                  $("#cttm").fadeOut("slow");
             }
      });

      $("#cttm").click(function(){
          $('html, body').animate({scrollTop:0}, 'slow');
          $("#cttm").fadeOut("slow");
      });
  });

这个Jquery工作得很好但我希望元素只在我们从顶部滚动到200px或类似的东西时出现。有没有办法用JQuery做到这一点?

1 个答案:

答案 0 :(得分:4)

你不需要窗口高度。

var isVisible = false;
$(window).scroll(function(){
     var shouldBeVisible = $(window).scrollTop()>200;
     if (shouldBeVisible && !isVisible) {
          isVisible = true;
          $('#mybutton').show();
     } else if (isVisible && !shouldBeVisible) {
          isVisible = false;
          $('#mybutton').hide();
    }
});

示范:http://jsfiddle.net/dystroy/gXSLE/