(function($, plugin) {
var data = {},
id = 1,
etid = plugin + 'ETID';
$.fn[plugin] = function(speed, group) {
id++;
group = group || this.data(etid) || id;
speed = speed || 150;
if (group === id) this.data(etid, group);
this._hover = this.hover;
this.hover = function(over, out) {
over = over || $.noop;
out = out || $.noop;
this._hover(function(event) {
var elem = this;
clearTimeout(data[group]);
data[group] = setTimeout(function() {
over.call(elem, event)
}, speed)
}, function(event) {
var elem = this;
clearTimeout(data[group]);
data[group] = setTimeout(function() {
out.call(elem, event)
}, speed)
});
return this
};
return this
};
$.fn[plugin + 'Pause'] = function() {
clearTimeout(this.data(etid));
return this
};
$[plugin] = {
get: function() {
return id++
},
pause: function(group) {
clearTimeout(data[group])
}
}
})(jQuery, 'mouseDelay');
/*
/*by wanhu 20201020
*/
var whirmenu = {
main: function(type, lang, selectid) {
whirmenu.public(lang, selectid);
whirmenu.menutype(type);
},
public: function(lang, selectid) {
$("#m" + selectid).addClass("aon"); //头部导航选中当前栏目
var _li = $("#menu li");
if (lang == 'cn') {
var num = _li.length,
w = 100 / num;
_li.outerWidth(w + "%");
}
//判断是否有下拉
_li.each(function() {
var n = $(this).find("dt").length
if (n >= 1) {
$(this).addClass("has-sub");
}
//改变选中 鼠标经过去掉当前栏目选中
$(this).hover(function() {
$(this).addClass("aon").siblings().removeClass("aon");
}, function() {
$(this).removeClass("aon");
$("#m" + selectid).addClass("aon");
});
});
//纵向多级
$(".has-sub .sub dt").each(function(){
var e=$(this).find(".hierarchy ol").length
if(e >= 1){
$(this).addClass("has-multi");
}
});
//三级
$(".hierarchy ol").each(function(){
var n=$(this).find("ol").length
if(n>=1){
$(this).addClass("has-multi")
}
})
},
menutype: function(type) {
$(function($) {
$(window).on("resize", function() {
if ($(window).width() > 1025) {
whirmenu.pc(type);
} else {
whirmenu.wap();
}
}).trigger("resize");
});
},
pc: function(type) {
//纵向
if (type == "Vertical") {
$(".has-sub").mouseDelay(false).hover(function() {
$(this).find(".sub").slideDown(300);
$(this).siblings().find(".sub").slideUp(300);
//判断下拉框内容宽度超出屏幕
var subw = $(this).find(".sub").outerWidth(),
this_pleft = $(this).position().left + $(this).outerWidth(),
ww = $(window).width(),
right_w = ww - this_pleft
//console.log(this_pleft,right_w)
if (subw >= right_w) {
var leftcss = subw - right_w
$(this).find(".sub").css("left", -leftcss);
} else {
$(this).find(".sub").css("left", "");
}
//判断下拉框内容宽度超出屏幕 END
}, function() {
$(this).find(".sub").slideUp(300);
});
$("#menu").mouseleave(function() {
$(this).find(".sub").slideUp(300);
});
//多级显示隐藏
$(".has-multi").hover(function(){
$(this).find(".hierarchy").eq(0).show()
$(this).siblings().find(".hierarchy").eq(0).hide()
},function(){
$(this).find(".hierarchy").eq(0).hide()
});
}
//横向
if (type == "Horizontal") {
$(".has-sub").mouseDelay(false).hover(function() {
$(this).siblings().find(".sub").fadeOut(500);
$(this).find(".sub").fadeIn(500);
var sumWidth = 0
$(this).find(".sub").find("dt").each(function() {
sumWidth += $(this).width() //得到总宽度
});
var ww = $(window).width()
var _half = sumWidth / 2
var _left = $(this).position().left + ($(this).outerWidth() / 2)
var _endLeft = _left - _half
if(sumWidth < ww){ //是否下拉宽度大于window宽度
$(this).find(".sub").find("dl").css("margin-left", _endLeft)
//判断右侧宽度是否等于或者大于下拉宽度的一半
if($("#menu").parents(".auto").length==1){
//判断内容宽度 左右留白
var _halfWw=(ww-$("#menu").parents(".auto").outerWidth())/2
var _endRight = _halfWw
var rightW=ww-_left-_halfWw
}
else{
var rightW=ww-_left
var _endRight = 0//rightW/2 - ($(this).outerWidth() / 2)
}
if(_half > rightW){
$(this).find(".sub").find("dl").removeAttr("style").css({"margin-right": _endRight,"float":"right"})
}
//判断右侧宽度是否等于或者大于下拉宽度的一半 END
}
}, function() {
$(this).find(".sub").fadeOut(300);
})
}
//左侧竖向菜单 子菜单竖排
if (type == 'leftVertical') {
$(".has-sub").mouseDelay(false).hover(function() {
$(this).find(".sub").fadeIn(300);
$(this).siblings().find(".sub").hide();
var th = $(this).offset().top - $(document).scrollTop();
var wh = $(window).height()
var dlh = $(this).find(".sub dl").height()
//判断越近底部高度减少 栏目高度超出
if (th + dlh > wh) {
$(this).find(".sub dl").css("padding-top", th - (th + dlh - wh))
} else {
$(this).find(".sub dl").css("padding-top", th)
}
}, function() {
$(this).find(".sub").fadeOut(300);
$(this).find(".sub dl").removeAttr("style");
});
}
},
wap: function() {
$("#menu li,#menu,.has-multi").unbind();
$(".has-sub .op,.has-multi .op-multi").remove();
$(".has-sub").find("span").append("");
$(".has-multi > aside").append("");
//打开二级
$('.op').click(function() {
$(this).toggleClass("click");
$(this).parent().next(".sub").slideToggle();
$(this).parent().parent().siblings().find(".op").removeClass("click");
$(this).parent().parent().siblings().find(".sub").slideUp();
});
//打开多级
$('.op-multi').click(function() {
$(this).toggleClass("click");
$(this).parent().next(".hierarchy").slideToggle();
$(this).parent().parent().siblings().find(".op-multi").removeClass("click");
$(this).parent().parent().siblings().find(".hierarchy").slideUp();
});
//打开移动端导航
$(".open-menu").unbind();
whirOpen.one(".open-menu", "body", "menu-show", "#menu");
//end
}
}
var whirOpen = {
one: function(a, b, bclass, c) {
$(a).click(function(e) {
$(this).toggleClass("on");
$(b).toggleClass(bclass);
$(document).on("click", function() {
$(b).removeClass(bclass);
$(a).removeClass("on");
});
e.stopPropagation();
});
$(c).on("click", function(e) {
e.stopPropagation();
});
},
toggle: function(a, b) {
$(a).click(function(e) {
$(this).toggleClass("on");
$(b).stop(true, true).slideToggle();
$(document).on("click", function() {
$(b).stop(true, true).slideUp();
$(a).removeClass("on");
});
e.stopPropagation();
});
$(b).on("click", function(e) {
e.stopPropagation();
});
},
hover: function(a, b) {
$(a).hover(function() {
$(b).stop(true, true).slideToggle();
$(this).toggleClass("on")
});
$(a).mouseleave(function() {
$(b).slideUp();
$(a).removeClass("on")
});
}
}
var whirsearch = {
open: function(a, b) {
$(a).click(function(e) {
$(this).toggleClass("on");
$(b).stop(true, true).fadeToggle();
$(document).on("click", function() {
$(b).stop(true, true).fadeOut();
$(a).removeClass("on");
});
e.stopPropagation();
});
$(b).on("click", function(e) {
e.stopPropagation();
});
},
search: function(a, b, c, d) {
$(a).jqSearch({
TxtVal: c,
KeyTxt1: "输入关键词搜索!",
KeyTxt2: "输入的关键词字数不要过多!",
KeyTxt3: "您输入的内容存在特殊字符!",
KeyId: b, //输入框id
KeyUrl: d, //跳转链接
KeyHref: "key", //链接传值
Static: false //是否静态站
});
},
searchEn: function(a, b, c, d) {
$(a).jqSearch({
TxtVal: c,
KeyTxt1: "Enter keywords to search!",
KeyTxt2: "Do not enter too many keywords!",
KeyTxt3: "There are special characters in the content you entered!",
KeyId: b, //输入框id
KeyUrl: d, //跳转链接
KeyHref: "key", //链接传值
Static: false //是否静态站
});
}
}