Last active
October 15, 2023 12:50
-
-
Save namklabs/4675438 to your computer and use it in GitHub Desktop.
fade out and hide a fixed element when you scroll to the bottom of the page (jQuery)
This file contains 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
//requires jQuery | |
$(window).scroll(function(){ | |
var threshold = 200; // number of pixels before bottom of page that you want to start fading | |
var op = (($(document).height() - $(window).height()) - $(window).scrollTop()) / threshold; | |
if( op <= 0 ){ | |
$("#thing-to-hide").hide(); | |
} else { | |
$("#thing-to-hide").show(); | |
} | |
$("#thing-to-hide").css("opacity", op ); | |
}); | |
/* | |
TODO: | |
Get working on iOS Safari. Does not fade out completely | |
*/ |
thanks! very usefull!
Very good !
Tysm
This was part of what I was looking for thanks a lot.
Wondering as well if I can try to use part of the code to check if the height of the viewport is greater than 4x show it otherwise keep it hide?
Works great. Tried some stack overflow solutions but I like this one the most
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks