You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 11, 2022. It is now read-only.
I tried to use bottomSpacing: 0 , but the element stays on top.
Here is my code, I used the example html:
<!doctype html><html><head><title>Sticky Plugin</title><scripttype="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script><scripttype="text/javascript" src="jquery.sticky.js"></script><script>$(window).load(function(){$("#header").sticky({topSpacing:0,bottomSpacing:0});});$(window).scroll(function(){position=$(".dickydick").offset().top-$("#header").height();if($(window).scrollTop()>position)$("#header").unstick();else$("#header").sticky();});</script><style>body {
height:10000px;
padding:0;
margin:0;
}
#header {
background:#bada55;
color: white;
font-family: Droid Sans;
font-size:18px;
line-height:1.6em;
font-weight: bold;
text-align: center;
padding:10px;
text-shadow:01px1pxrgba(0,0,0,.2);
width:100%;
box-sizing:border-box;
}
</style></head><body><divclass="header-sticky-wrapper" style=""><p>This is test this is text this is text at the top.</p><divid="header"><p>This is the sticky thingy that is really cool.</p></div><pstyle="margin-top:200vh">This is test this is text this is text at the bottom.</p></div><divclass="blockdiv"></div></body></html>