I am using a Scroll to top button on my website. I am using this Jquery for it
    $(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");
      });
  });
This Jquery works great but i want the element to appear only when we scroll to 200px from the top or something like that. Is there any way to do it with JQuery ?
You don't need the window height to do that.
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();
    }
});
Demonstration : http://jsfiddle.net/dystroy/gXSLE/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With