Wedges.bin

はてなブログでWEBデザイン

Sidebar

サイドバーのスクロールを途中で固定する方法

jQueryを読み込んでいるので、一番簡単そうなのはこれである。 <script> $(function($) { var tab = $('.hoge'), offset = tab.offset(); $(window).scroll(function () { if($(window).scrollTop() > offset.top) { tab.addClass('fixed'); } else { tab.removeClas</script>…