提前致谢!我是HTML新手,刚建立了我的第一个网站。我已经查看了其他类似的问题,但没有找到这个具体问题的明确答案。
我希望导航栏默认打开。我已经尝试分别评论每行代码并改变js中的小东西,但我似乎无法隔离问题。
以下是该网站,菜单图标位于顶部中心:https://charlottemcclintock.github.io
HTML:
@Input() posts: Post[];
相关的javascript:
from itertools import product
L1 = ['12:55:35.87', '12:55:35.70']
L2 = ['12:55:35.53', '12:45:35.30']
res = [(i, j) for (i, x), (j, y) in
product(enumerate(L1), enumerate(L2))
if x[:4] == y[:4]]
# [(0, 0), (1, 0)]
感谢您阅读本文!
答案 0 :(得分:1)
尝试使用此代码,看看它是否有效。
$('.wrapper').removeClass('noGap');
$('.navbar-wrapper').animate({
opacity:1
},200);
$('.navbar-wrapper').removeClass('default-menu');
$(this).fadeOut();
$("#nav-show").hide(); // This line is edited.
$('#nav-show').click(function(x){
x.preventDefault();
$('.wrapper').removeClass('noGap');
$('.navbar-wrapper').animate({
opacity:1
},200);
$('.navbar-wrapper').removeClass('default-menu');
$(this).fadeOut();
});
$('.closeMenu').click(function(x){
x.preventDefault();
$('.navbar-wrapper').animate({
opacity:0
},50,function(){$('.navbar-wrapper').addClass('default-menu');});
$('#nav-show').fadeIn();
});