少し前にこれを行いました。これを行うために作成したコードは次のとおりです。 JSFiddle を表示します。
(マークアップを少し変更する必要があるかもしれません。これがあなたのテーブルレイアウトでどれだけうまく機能するかわかりませんdivs
。それらを使用してフローティングさせてコンテンツをレイアウトすることをお勧めします。)または、コード/以下のロジックとroll your own
独自のレイアウトを使用します。
基本的に、
- 要素を
取得する - ページ読み込み時のサイドバーの位置を取得する
- 取得する#content.outerHeight()
これらの vars を取得したら、元の位置(以下) であるかwindow scroll
どうかをテストするか、または を超えているかどうかを確認します。2 つが true の場合は、スティッキー クラスを削除します。スクロールは元の位置です。次に、クラスを追加します(これには があります)。<=
sidebarTop position
blogHeight
elseif
>=
sidebar
.sticky
position: fixed
JSFiddleを確認してください(ここをクリック)
Javascriptは次のようになります。
// Cache our vars for the fixed sidebar on scroll
var $sidebar = $('#sidebar-nav');
// Get & Store the original top of our #sidebar-nav so we can test against it
var sidebarTop = $sidebar.position().top;
// Edit the `- 10` to control when it should disappear when the footer is hit.
var blogHeight = $('#content').outerHeight() - 10;
// Add the function below to the scroll event
$(window).scroll(fixSidebarOnScroll);
// On window scroll, this fn is called (binded above)
function fixSidebarOnScroll(){
// Cache our scroll top position (our current scroll position)
var windowScrollTop = $(window).scrollTop();
// Add or remove our sticky class on these conditions
if (windowScrollTop >= blogHeight || windowScrollTop <= sidebarTop){
// Remove when the scroll is greater than our #content.OuterHeight()
// or when our sticky scroll is above the original position of the sidebar
$sidebar.removeClass('sticky');
}
// Scroll is past the original position of sidebar
else if (windowScrollTop >= sidebarTop){
// Otherwise add the sticky if $sidebar doesnt have it already!
if (!$sidebar.hasClass('sticky')){
$sidebar.addClass('sticky');
}
}
}
HTML : _
<header>This is the header!</header>
<ul id="sidebar-nav" class="nav nav-list">
<li><a href="#">Home</a></li>
<li><a href="#">Blog</a></li>
</ul>
<div id="content">Content in here, scroll down to see the sticky in action!</div>
<div class="clear"></div>
<div id="footer">This is the #footer</div>
CSS : _
/* Sticky our navbar on window scroll */
#sidebar-nav.sticky {position:fixed;top:5px;}
/* Other styling for the html markup */
header {
border:1px solid #aaa;
background-color:yellow;
margin-bottom:5px;
height:50px;
}
#sidebar-nav {
width:150px;
border:1px solid #ddd;
margin:0;
padding:0;
float:left;
}
#sidebar-nav li {
list-style:none;
border:1px solid #ddd;
margin:10px;
padding:2px;
}
#content {
height:2000px;
width:500px;
padding:10px;
border:1px solid #ddd;
margin:0 0 10px 5px;
float:right;
}
#footer {
height:800px;
border:1px solid green;
background-color:#ddd;
}
.clear {
clear:both;
}
:)