$(document).ready(function() { new wow().init(); $('.address').click(function() { $(this).next('.k-box').find('.k-f').toggleclass('display').parents('.bs').siblings().find('.k-f').removeclass('display'); }) $('.yuanquan').click(function(){ $(this).toggleclass('sc-on').parents('.bs').siblings().find('.yuanquan').removeclass('sc-on'); $(this).siblings('.k-box').toggleclass("k-box-action").parents('.bs').siblings().find('.k-box').removeclass('k-box-action'); }) $('.info-content img').parents('p').css('text-indent', 'initial') //清楚类页img父级标签p的段落 if($(window).width() < 991) { $('.index-news video').attr('poster', ''); } layui.use(['form','layer'], function() { var form = layui.form; var layer = layui.layer; form.on('select(sname)', function(data) { window.open(data.value); }); }); $('.show').click(function() { layer.open({ type: 2, title: false, shade: 0.8, skin:'video-show', content: $(this).attr('data-video') }); }) //点击地图 $('.xswl-btn').click(function(){ $(this).parent().toggleclass('xswl-on').siblings().removeclass('xswl-on'); if($(this).parent().hasclass('xswl-on')){ $('.xswl-max-mess').show().html($(this).next().html()); }else{ $('.xswl-max-mess').hide().html(''); } }) var swiper = new swiper('.swiper-container', { pagination: '.swiper-pagination', nextbutton: '.swiper-button-next', prevbutton: '.swiper-button-prev', paginationclickable: true, loop: 'loop' }); var two_swiper = new swiper('.swiper-2-container', { nextbutton: '.swiper-new-next', prevbutton: '.swiper-new-prev', slidesperview: 5, loop: 'loop', autoplay: 3000, breakpoints: { //当宽度小于等于320 993: { slidesperview: 3, spacebetween: 10 } } }); //点击导航外收起 $('html').click(function() { closenav(); }) //导航链接判断 $('.nav li>a').click(function(e) { if($('.nav-box .container').outerwidth() < 960 && $(this).next('div').length > 0) { stopdefault(e); } }) //移动端导航事件 $('.nav-btn').click(function(event) { propagation(); $('body').animate({ scrolltop: 0 }, 100); $(this).toggleclass('nav-btn-show'); $('.body-box').toggleclass('body-box-show'); $('.nav-box').toggleclass('nav-box-show'); $('.nav').toggleclass('nav-show'); $('.lang dd').slideup(50); $('.nav-bg-02').toggleclass('nav-bg-02-show'); }); $('.nav li').click(function() { $('.lang dd').removeclass('lang-show'); if($('.nav-box .container').outerwidth() < 960) { $(this).toggleclass('nav-on').siblings().removeclass('nav-on'); $(this).find('div').slidetoggle(150).parent().siblings().find('div').slideup(150);; } }); $('.nav-box').click(function(event) { propagation(); $('.lang dd').removeclass('lang-show'); }); //pc端导航事件 $('.nav li').mouseenter(function() { if($('.nav-box .container').outerwidth() >= 960) { $('.nav li div').slideup(50); $(this).find('div').slidedown(100); $('.nav li').removeclass('nav-on'); $(this).addclass('nav-on').siblings().addclass('nav-off'); $(this).children('.nav-two').addclass('fadein').removeclass('fadeout'); } }); $('.nav li').mouseleave(function() { if($('.nav-box .container').outerwidth() >= 960) { $(this).children('.nav-two').addclass('fadeout').removeclass('fadein'); } }); }); //收起导航 function closenav() { $('.nav-btn').removeclass('nav-btn-show'); $('.body-box').removeclass('body-box-show'); $('.nav-box').removeclass('nav-box-show'); $('.nav').removeclass('nav-show'); $('.nav-bg-02').removeclass('nav-bg-02-show'); // $('.lang dd').slideup(50); // $('.footer-r dd').hide(); // $(".kcxz-box dd").hide(); // $('.nav-r .search-bd').removeclass('search-bd-show'); } //阻止冒泡事件 function propagation() { if(event.stoppropagation) { // this code is for mozilla and opera event.stoppropagation(); } else if(window.event) { // this code is for ie window.event.cancelbubble = true; } } //阻止跳转 function stopdefault(e) { if(e && e.preventdefault) e.preventdefault(); else window.event.returnvalue = false; return false; }