Skip to content

Instantly share code, notes, and snippets.

@takimo
Created April 13, 2011 00:16
Show Gist options
  • Save takimo/916726 to your computer and use it in GitHub Desktop.
Save takimo/916726 to your computer and use it in GitHub Desktop.
document.addEventListener('touchend', function(){
console.log(window.scrollY);
var header = document.getElementById('header');
header.style.top = window.scrollY;
var footer = document.getElementById('footer');
console.log(footer.clientHeight);
footer.style.top = window.scrollY + screen.height - 44 - footer.clientHeight - 20;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment