Preview:
<!-- 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>
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter