2
votes
1answer
29 views

fadeIn issues with with scrolling

I'm trying to have my content fade in when reaching a certain proximity to to respective ends of the page. The fade works fine when the trigger is set to the very top and bottom but when I set a ...
3
votes
2answers
515 views

Fade-in 'scroll to top' button inside an overflow:auto div

I'm trying to add a Scroll to Top button at the bottom of a div that is set to overflow:auto. It will be used for a section of a site that uses ajax to call content (of varying lengths) into the div. ...
1
vote
1answer
2k views

How to fade out, fade in a div on window scroll?

My div fades out nicely after 100px scrolled, but will not fade back in after 300px scrolled. Any ideas? $(document).ready(function(){ $(window).scroll(function () { if ...
0
votes
2answers
741 views

Scroll to a specific div that's not in view

I am trying to scroll to the top of a specific div container. Currently my code is instead scrolling the page content into view. Anybody has an idea how what's wrong? : ) Here's the code: var ...
1
vote
2answers
2k views

Fade in and out certain DIVs based on scroll position

The basic problem I'm having is that I'd like to fade in and out particular divs based on the user's current vertical location on the page. Getting the 1st div to fade in when scrolling down is easy, ...