Hide and Show Mobile Footer
Tue Jun 25 2024 15:13:21 GMT+0000 (Coordinated Universal Time)
Saved by
@mastaklance
<!-- Hide and Show Mobile Footer -->
<script>
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("footer-mobile").style.bottom = "0";
} else {
document.getElementById("footer-mobile").style.bottom = "-80px"; /* adjust this value to the height of your header */
}
prevScrollpos = currentScrollPos;
}
</script>
<style>
/* Show Hide Sticky Header Speed Control */
#footer-mobile {
transition: all 0.4s ease!important;
}
</style>
content_copyCOPY
Comments