Skip to content

Instantly share code, notes, and snippets.

@ozknozsrt
Created September 18, 2017 08:28
Show Gist options
  • Save ozknozsrt/c05b32b0b2c45602ecea71b4414a8098 to your computer and use it in GitHub Desktop.
Save ozknozsrt/c05b32b0b2c45602ecea71b4414a8098 to your computer and use it in GitHub Desktop.
scroll to div follow
$(document).scroll(function(){
if($(this).scrollTop() + 10 > 600)
$(".yan_menu").stop(true).delay(500).animate({"top": $(this).scrollTop() + 10},{ duration:1000, easing: "easeOutExpo" })
else
$(".yan_menu").stop(true).delay(500).animate({"top": 600},{ duration:1000, easing: "easeOutExpo" })
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment