I have a webpage on which I would like a box to appear when the user scrolls to a certain point. As this page is a blog, this point needs to be flexible.
This is my code so far:
$(document).ready(function(){
var navoff = $('.navigation').offset();
$(window).scroll(function(){
var y = $(window).scrollTop();
var windowheight = $(window).height();
var totalheight = navoff.top - (windowheight / 2);
if(y > totalheight) {
$('.box').animate({ 'bottom': '0px' });
}else{
$('.box').animate({ 'bottom': '-140px' });
}
});
});
Nagivation is the element right underneath the blog post so I figured offset would work better than figuring out when the blog content div reached the top of the screen. The code above works, the box slides out from the bottom, but there is a huge delay. On average it takes about five seconds for the script to show the box, and ten to take it away. Why the delay? And can this be made instant?
Thanks!