Skip to content

Instantly share code, notes, and snippets.

@colynb
Forked from Cezarion/affix.html
Created May 11, 2017 00:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colynb/a56313692b72817b03da93cc33d29152 to your computer and use it in GitHub Desktop.
Save colynb/a56313692b72817b03da93cc33d29152 to your computer and use it in GitHub Desktop.
Affix js with vanilla js
<script type="text/javascript">
window.onscroll = scroll;
function scroll () {
var scrollTop = window.pageYOffset;
console.log(scrollTop);
if( scrollTop > 363 ){
document.getElementById('summary').style.top="20px";
document.getElementById('summary').style.position="fixed";
}
else
{
document.getElementById('summary').style.position="relative";
document.getElementById('summary').style.top="50px";
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment