0
當用戶向下滾動頁面時,我有一個位於窗口頂部的粘性邊欄。媒體查詢使用Javascript結合起來呢?
它工作正常,在桌面大小,而是調整屏幕平板尺寸時(僅@media屏幕(最小寬度:768px)和(最大寬度: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');
});
});
驚人的感謝沒注意到! –