// 初始化缓动插件 aos.init({ offset: 200, duration: 600, easing: 'ease', delay: 100, }); //wap导航汉堡按钮动画切换 $(document).ready(function() { $(".hamburger").click(function() { //汉堡按钮折叠和交叉状态 $(this).toggleclass("is-active"); $('.wap-burger_menu').toggleclass('active'); //判断汉堡按钮的状态来收缩菜单栏 if ($(this).hasclass('is-active')) { $('body').css({ "overflow-x":"hidden", "overflow-y":"hidden" }); $('.wap-nav .search-box').fadeout(800); } else { $('body').css({ "overflow-x":"auto", "overflow-y":"auto" }); $('.wap-nav .search-box').fadein(800); } }); }); //wap端主导航伸缩和内页侧伸缩 $('.wap-burger_menu .level1>li>a').click(function() { $(this).parent().toggleclass('active').siblings().removeclass('active'); $(this).next().stop().slidetoggle("slow") .parent().siblings().children('a').removeclass('active') .next().slideup(); }); //pc端主导航二级下拉效果 $('.pc-header .level1>li').hover(function() { $(this).children('a').addclass('active'); $(this).children('.level2').css('display', 'block').stop().animate({ top: "100%", opacity: "1", }, { easing: 'easeoutcubic', duration: 500, queue: false, }); }, function() { $(this).children('a').removeclass('active'); $(this).children('.level2').stop().animate({ top: "100%", opacity: "0", }, { easing: 'easeoutcubic', duration: 300, queue: false, complete: function() { $(this).css('display', 'none'); } }); }); //主导航滚动高度缩小效果 $(window).scroll(function() { var sct = $(document).scrolltop(); if(sct >= 100){ $('.js-pc-header').addclass('scroll') }else{ $('.js-pc-header').removeclass('scroll') } }) //内页导航wap端展开 $('.wap-ny-nav .nav-top .right').click(function(){ $(this).parent().next().stop().slidetoggle('slow'); $(this).toggleclass('active'); if($(this).hasclass('active')){ $(this).html('关闭'); }else{ $(this).html('展开'); } }); //首页banner图 var index_swiper = new swiper('.index_swiper', { loop: true, autoplay: { delay: 7000, stoponlastslide: false, disableoninteraction: false, }, speed: 1000, effect : 'fade', pagination: { el: '.swiper-pagination', clickable :true }, }); //新闻动态荣誉认证 var swiperyyrzcontainer = new swiper('.swiper-yyrz-container', { loop: true, autoplay: { delay: 4000, stoponlastslide: false, disableoninteraction: false, }, speed: 600, slidesperview : 4, spacebetween : 50, navigation: { nextel: '.swiper-next', prevel: '.swiper-prev', }, breakpoints: { //当宽度小于等于320 575: { slidesperview: 2, spacebetween: 15 }, 767: { slidesperview: 2, spacebetween: 20 }, 991: { slidesperview: 2, spacebetween: 30 }, 1280: { slidesperview: 3, spacebetween: 40 } } }); //返回顶部 $(".to_top").click(function() { $('body,html').animate({ scrolltop: 0 }, { easing: 'easeinoutquart', duration: 900 }); return false; }); //侧边栏效果 //微信 $('#wxgzh-logo').mouseover(function(){ $('.wxgzh-img').css('display','block').stop().animate({ top:"40", opacity:"1", }, { easing: 'easeoutcubic', duration: 700, queue: false, }); }); $('#wxgzh-logo').mouseout(function(){ $('.wxgzh-img').stop().animate({ top:"60", opacity:"0", }, { easing: 'easeoutcubic', duration: 700, queue: false, complete: function() { $(this).css('display', 'none'); } }); }); //隐藏侧栏 $('#hidebtn').click(function(){ $('.module-020').toggleclass('active') console.log($(this).text()) if($(this).text() === '隐藏侧栏'){ $(this).text('在线咨询') }else{ $(this).text('隐藏侧栏') } }) //侧边栏效果 end