这是主题:http://keenthemes.com/free-bootstrap-templates/onepage-1-bootstrap-themefreebie-onepage-1-frontend-theme/
调整大小时,在 1024-1040px 宽度大小时,菜单开始跳跃和闪烁。
知道为什么会这样吗?
我试图删除 Z 索引,在标题div 中设置溢出:自动和位置:取消设置选项,但没有帮助。
发现它,在布局中.js这种代码的平静带来了问题:
var handleHeaderPosition = function () {
var CurrentHeaderPosition = $(".header").offset().top;// current header's vertical position
var headerFix = function(){
var CurrentWindowPosition = $(window).scrollTop();// current vertical position
if (CurrentWindowPosition > CurrentHeaderPosition) {
$(".header").addClass("fixNav");
} else {
$(".header").removeClass("fixNav");
}
};
headerFix();// call headerFix() when the page was loaded
if (navigator.userAgent.match(/iPhone|iPad|iPod/i)) {
$(window).bind("touchend touchcancel touchleave", function(e){
headerFix();
});
} else {
$(window).scroll(function() {
headerFix();
});
}
}
var handleGo2Top = function () {
var Go2TopOperation = function(){
var CurrentWindowPosition = $(window).scrollTop();// current vertical position
if (CurrentWindowPosition > 300) {
$(".go2top").show();
} else {
$(".go2top").hide();
}
};
Go2TopOperation();// call headerFix() when the page was loaded
if (navigator.userAgent.match(/iPhone|iPad|iPod/i)) {
$(window).bind("touchend touchcancel touchleave", function(e){
Go2TopOperation();
});
} else {
$(window).scroll(function() {
Go2TopOperation();
});
}
}
var handleMobiToggler = function () {
$(".mobi-toggler").on("click", function(event) {
event.preventDefault();//the default action of the event will not be triggered
$(".header").toggleClass("menuOpened");
$(".header").find(".header-navigation").toggle(300);
});
function SlideUpMenu () {
$(".header-navigation a").on("click", function(event) {
if ($(window).width()<1024) {
event.preventDefault();//the default action of the event will not be triggered
$(".header-navigation").slideUp(100); // by changing 100 to 0 helps the issue, havent found any drawbacks yet
$(".header").removeClass("menuOpened");
}
});
$(window).scroll(function() {
if (($(window).width()>480)&&($(window).width()<1024)) {
$(".header-navigation").slideUp(100); // by changing 100 to 0 helps the issue, havent found any drawbacks yet
$(".header").removeClass("menuOpened");
}
});
}
SlideUpMenu();
$(window).resize(function() {
SlideUpMenu();
});
}