garand / sticky

jQuery Plugin for Sticky Objects
Other
3.3k stars 1.06k forks source link

Disable scrollTop event #186

Open ghost opened 8 years ago

ghost commented 8 years ago

Hello,

The plugin is amazing! I am new to jQuery, but I was able to get right in and this functional beyond my expectations.... The problem I am having is that I can't figure out how to disable the scrollTop event from happening when a sticky element is displayed. I need the sticky element to .fadeOut/In without repositioning the window.

Would you mind sharing some thoughts on disabling the scroll event?

Thanks again for the plugin... Brilliant...

ghost commented 8 years ago

I am guessing I would adjust lines 42-46 (see below), but when I comment it out, it breaks the plugin...

scroller = function() {
  var scrollTop = $window.scrollTop(),
    documentHeight = $document.height(),
    dwh = documentHeight - windowHeight,
    extra = (scrollTop > dwh) ? dwh - scrollTop : 0;
drewbietron commented 8 years ago

Is there a fix to this? It would be nice to not have the content scrolled to the top when its stuck/unstuck.