Created
September 18, 2017 08:28
-
-
Save ozknozsrt/c05b32b0b2c45602ecea71b4414a8098 to your computer and use it in GitHub Desktop.
scroll to div follow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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