stickyjs是一款JQuery插件,使你能够做任何元素在您的网页上总是可见的,可以作为顶部固定导航显示插件。
<script>
$(document).ready(function(){
$("#sticker").sticky({topSpacing:0});
});
</script>
解绑
<script>
$("#sticker").unstick();
</script>
官网地址 :http://stickyjs.com/
Github 地址 :https://github.com/garand/stick