$(function () { // 首页banner轮播图 if ($('.home-banner.swiper-container').length) { var myswiper = new swiper('.home-banner.swiper-container', { // direction: 'horizontal', loop: true, // 循环模式选项 autoplay: true, // 分页器 pagination: { el: '.swiper-pagination', }, // 进后退按钮 navigation: { nextel: '.swiper-home-next', prevel: '.swiper-home-prev', }, // 滚动条 scrollbar: { el: '.swiper-scrollbar', }, }) } // 合作伙伴 if ($('.frm-swiper').length) { var num = $(document).width()<=768?2:6; var myswiper2 = new swiper('.frm-swiper', { slidesperview: num, spacebetween: 30, // pagination: { // el: ".swiper-pagination", // clickable: true, // }, // 进后退按钮 navigation: { nextel: '.swiper-outside-next', prevel: '.swiper-outside-prev', }, }) } // 滚动改变导航栏 $(window).on('scroll', function () { function fixedheader() { var headertopbar = 43; var headeronetopspace = 0; var headeroneelement = $('.header-one .site-navigation'); var headertwoelement = $('.header-two .site-navigation'); if ($(window).scrolltop() > headertopbar + headeronetopspace) { $(headeroneelement).addclass('navbar-fixed'); $('.header-one').css('margin-bottom', headeroneelement.outerheight()); } else { $(headeroneelement).removeclass('navbar-fixed'); $('.header-one').css('margin-bottom', 0); } if ($(window).scrolltop() > headertopbar) { $(headertwoelement).addclass('navbar-fixed'); $('.header-two').css('margin-bottom', headertwoelement.outerheight()); } else { $(headertwoelement).removeclass('navbar-fixed'); $('.header-two').css('margin-bottom', 0); } } fixedheader(); function scrolltopbtn() { var scrolltotop = $('#back-to-top'), scroll = $(window).scrolltop(); if (scroll >= 50) { scrolltotop.fadein(); } else { scrolltotop.fadeout(); } } scrolltopbtn(); }); if ($(window).scrolltop()>100) { $('.header-two .site-navigation').addclass('navbar-fixed'); $('.header-two').css('margin-bottom', $('.header-two .site-navigation').outerheight()); } // 搜索 function navsearch() { $('.nav-search').on('click', function () { $('.search-block').fadein(350); }); $('.search-close').on('click', function () { $('.search-block').fadeout(350); }); // 绑定搜索回车 $('#search-field').on('keypress',function () {}) $('.search-field').on('keypress',function () {}) } navsearch(); // 滚动到顶部 function backtotop() { $('#back-to-top').on('click', function () { $('#back-to-top').tooltip('hide'); $('body,html').animate({ scrolltop: 0 }, 800); return false; }); } backtotop(); // 图片放大 if ($('[data-toggle="photos"]').length>0) { $('[data-toggle="photos"]').click(function () { var data = []; $('#'+$(this).data('id')).find('img').each(function(index){ var othis = $(this); othis.attr('layer-index', index); data.push({ alt: othis.attr('alt'), pid: othis.attr('layer-pid'), src: othis.attr('layer-src') || othis.attr('src'), thumb: othis.attr('src') }); }); if (data) { layer.photos({ photos: { start: $(this).attr('layer-index'), data: data }, }, true); } }) } // 视频播放 if ($('[data-toggle="h5video"]').length>0) { $('[data-toggle="h5video"]').click(function () { layer.open({ type: 1 ,title: false ,closebtn: true ,area: $('body').width()<768?'95%':'600px' ,id: 'home-id-css' ,btnalign: 'c' ,movetype: 1 ,resize: false ,content: '' ,success: function(layero){} }); }) } // 邮箱、手机号弹出 $('.social').click(function (e) { layer.open({ type: 1 ,title: false ,closebtn: true ,id: 'home-id-css' ,btnalign: 'c' ,movetype: 1 ,resize: false ,content: '
'+$(this).data('url')+'
' ,success: function(layero){} }); }) // 图片弹出 $('.social-img').click(function (e) { layer.open({ type: 1 ,title: false ,closebtn: true ,id: 'home-id-css' ,btnalign: 'c' ,movetype: 1 ,resize: false ,content: '
' ,success: function(layero){} }); }) if ($(document).width()<1000) { $('.navbar-collapse>ul>li.dropdown').children('.dropdown-toggle').attr('data-toggle','dropdown'); // 手机端默认展开全部子栏目 $('.navbar-collapse>ul>li.dropdown').click(function (e) { $(this).find('.dropdown-submenu .dropdown-menu').addclass('show') }); } })