$(document).ready(function ($) {
// 移动端内页导航
function inResize(_width) {
if (_width < 959) {
$('.d-slideNav1 .bd').hide();
$('body').on('click', '.d-slideNav1 .hd', function(event) {
$(this).siblings('.bd').stop().slideToggle();
return false;
});
} else {
$('.d-slideNav1 .bd').show();
}
}
inResize($(window).innerWidth())
var inT = null;
$(window).on('resize', function(event) {
inResize($(window).innerWidth())
});
// 头部搜索框
$('body').on('click', '.header .header-so-btn', function(event) {
$('.pop-search').stop().fadeIn();
return false;
}).on('click', '.pop-search .pop-search-close', function(event) {
$('.pop-search').stop().fadeOut();
}).on('click', '.pop-search', function(event) {
event.stopPropagation();
});
// 头部导航
$('.menuBtn').append('');
$('.menuBtn').click(function (event) {
$(this).toggleClass('open');
$('.header-r').toggleClass('active');
event.stopPropagation();
});
function navFun(_width) {
if (_width > 959) {
$('.nav li>a i').unbind('click')
$('.nav li').unbind('mouseenter mouseleave')
$('.nav li').hover(function () {
if ($(this).find('.sub').length) {
$(this).find('.sub').stop().fadeIn(300);
}
}, function () {
$(this).find('.sub').stop().fadeOut(300);
});
} else {
$('.nav li>a i').unbind('click')
$('.nav li').unbind('mouseenter mouseleave')
$('.nav li').each(function(index, val) {
if($(this).hasClass('on')) {
$(this).find('.sub').show();
}
});
$('.nav li>a i').on('click', function(event) {
if($(this).parents('a').siblings('.sub').length) {
$(this).parents('a').siblings('.sub').stop().slideToggle().parents('li').toggleClass('on').siblings('li').removeClass('on').find('.sub').stop().slideUp();
return false
}
});
}
}
navFun($(window).innerWidth())
$(window).on('resize', function(event) {
navFun($(window).innerWidth())
});
// 页面下滑-头部
function hdDown(_top) {
if(_top>0) {
$('.header').addClass('down');
}else{
$('.header').removeClass('down');
}
}
hdDown($(window).scrollTop());
$(window).on('scroll', function(event) {
hdDown($(window).scrollTop());
});
// 底部返回顶部
$(".gotop").click(function() {
$("html,body").animate({scrollTop:0}, 500);
});
// 底部常用链接
$('body').on('click', '.footer .footer-fLink dt', function(event) {
$(this).toggleClass('active').siblings('dd').stop().slideToggle();
event.stopPropagation();
}).on('click', function(event) {
$('.footer .footer-fLink dt').removeClass('active');
$('.footer .footer-fLink dd').stop().slideUp();
});
// 底部分享
$('body').on('mouseenter', '.footer .footer-share .icon', function(event) {
$(this).addClass('active').siblings('.mask-pop').stop().fadeIn();
}).on('mouseleave', '.footer .footer-share .icon', function(event) {
$(this).removeClass('active').siblings('.mask-pop').stop().fadeOut();
});
// 动画初始化
var wow = new WOW({
boxClass: 'wow',
animateClass: 'animated',
offset: 50,
mobile: false,
live: true
});
if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))) {
wow.init();
var $ani = $('.animated')
$ani.css('opacity', 0);
};
// 选项卡 鼠标点击1
$(".TAB_CLICK1 li").click(function () {
var tab = $(this).parent(".TAB_CLICK1");
var con = tab.attr("id");
var on = tab.find("li").index(this);
$(this).addClass('active').siblings(tab.find("li")).removeClass('active');
$(con).eq(on).show().siblings(con).hide();
});
$('.TAB_CLICK1').each(function (index, el) {
if ($(this).find('li.active').length) {
$(this).find("li.active").trigger('click');
} else {
$(this).find("li").filter(':first').trigger('click');
}
});
// 选项卡 鼠标点击2
$(".TAB_CLICK2 li").click(function() {
var tab = $(this).parent(".TAB_CLICK2");
var con = tab.attr("id");
var on = tab.find("li").index(this);
$(this).addClass('active').siblings(tab.find("li")).removeClass('active');
$(con).eq(on).addClass('active').siblings(con).removeClass('active');
});
$('.TAB_CLICK2').each(function (index, el) {
if ($(this).find('li.active').length) {
$(this).find("li.active").trigger('click');
} else {
$(this).find("li").filter(':first').trigger('click');
}
});
// 选项卡 鼠标经过切换1
$(".TAB_HOVER1 li").mousemove(function(){
var tab=$(this).parent(".TAB_HOVER1");
var con=tab.attr("id");
var on=tab.find("li").index(this);
$(this).addClass('active').siblings(tab.find("li")).removeClass('active');
$(con).eq(on).show().siblings(con).hide();
});
$('.TAB_HOVER1').each(function (index, el) {
if ($(this).find('li.active').length) {
$(this).find("li.active").trigger('mousemove');
} else {
$(this).find("li").filter(':first').trigger('mousemove');
}
});
// 选项卡 鼠标经过切换2
$(".TAB_HOVER2 li").mousemove(function(){
var tab=$(this).parent(".TAB_HOVER2");
var con=tab.attr("id");
var on=tab.find("li").index(this);
$(this).addClass('active').siblings(tab.find("li")).removeClass('active');
$(con).eq(on).addClass('active').siblings(con).removeClass('active');
});
$('.TAB_HOVER2').each(function (index, el) {
if ($(this).find('li.active').length) {
$(this).find("li.active").trigger('mousemove');
} else {
$(this).find("li").filter(':first').trigger('mousemove');
}
});
});