ユーザーがページを下にスクロールすると、ウィンドウの上部に粘着性のあるサイドバーが表示されます。
デスクトップサイズでは問題なく動作しますが、画面をタブレットサイズ(@media only screen and(min-width:768px)and(max-width:959px))にサイズ変更すると、固定されなくなります。
Javascriptにメディアクエリを追加する必要がありますか?
あなたはここhttp://v3.edharrisondesign.com/project/でプロジェクトを見ることができます
$('#sticky').scrollToFixed({
marginTop: 20,
limit: function() {
var limit = $('#foot').offset().top - $('#sticky').outerHeight(true) - 100;
return limit;
},
minWidth: 1000,
zIndex: 999,
fixed: function() { },
});
$('#sticky').bind('unfixed', function() {
console.log('sticky preUnfixed');
});
$('#sticky').bind('unfixed', function() {
console.log('sticky unfixed');
$(this).css('color', '');
});
$('#sticky').bind('fixed', function() {
console.log('sticky fixed');
$(this).css('opacity', '1');
});
});