こんにちは、考えられる解決策の1つは、自動スクロールバーを追加することです。
CSS:
#sidebar {
overflow-y: auto;
}
JS:
$(document).ready(function() {
var topPadding = 15;
var sidebar = $("#sidebar");
sidebar.css('max-height', $(window).height() - 2*topPadding); // initialize max-height
$(window).resize(function() {
sidebar.css('max-height', $(window).height() - 2*topPadding);
});
$(window).scroll(function() {
sidebar.stop().animate({
marginTop: $(window).scrollTop() + topPadding
});
});
});
jsフィドル
ページの Javascript:
$(document).ready(function() {
$(window).scroll(function() {
var topPadding = 15;
var crfoffset = $("div.contentRightFull").offset().top;
var winoffset = $(window).scrollTop();
var stioffset = $("#stickymojo").height() - $('#sidebar').height();
var mtop = Math.max(0, winoffset-crfoffset);
if (mtop>stioffset) { mtop = stioffset; }
$("#sidebar").stop().animate({
marginTop: mtop + topPadding
});
});
});