garand / sticky

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

sticky element is flickering with mouse scroll not with scrollbar #286

Open wassy83 opened 5 years ago

wassy83 commented 5 years ago

Hi in this page

https://neos.anekitalia.com/olympic-champion

you can notice a yellow bar that becomes sticky with this simple code

<!--per menu fixed-->
<script>
jQuery(document).ready(function($){
    $("#sticky-flotta").sticky({
      topSpacing:-2,
      zIndex:9999
    });
  });
</script>

this is working as expected but if you scroll fast with your mouse scroller, the element is flickering for an instant with CHROME FIREFOX and IE, this doesn't happens if I use the scrollbar with my mouse pointer. any suggestion to fix this? many thanks

AidanHak commented 3 years ago

Did you ever find a solution to this?