請幫忙!!! 我在畫布菜單上工作(https://codepen.io/oleksiukmary/pen/MEGpZj)。問題是當移動菜單打開並且用戶調整窗口大小時 - 內容仍然會改變屬性和覆蓋。如何在用戶調整窗口大小時返回初始參數?我應該通過js檢查窗口大小是否超過768px(我的斷點),然後隱藏覆蓋和轉換內容?調整窗口大小時不隱藏畫布菜單
我的JS:
$(document).ready(function() {
$('#nav-toggle').click(function(){
if($(this).is(":checked")) {
$('.content-wrap').css('transform', 'translateX(80%)');
} else {
$('.content-wrap').css('transform', 'translateX(0)');
}
$('body').toggleClass('overflow-hidden');
$('#c-mask').toggleClass('is-active');
});
$('#c-mask').click(function() {
$('#overlay').fadeOut('slow');
$(this).removeClass('is-active');
$('#nav-toggle').prop('checked', false);
$('.content-wrap').css('transform', 'translateX(0)');
});
});
是的,你說得對。您需要添加一個調整大小處理程序,並在其中,您需要檢查視口/窗口的新寬度,並根據需要隱藏菜單,覆蓋,轉換等。 –