/*滚动动画*/ function scrollAni(ele,_distance) { ele.each(function() { var _this = $(this); if (_this.offset().top > $(window).scrollTop() + $(window).height() || _this.offset().top < $(window).scrollTop() - _this.outerHeight()) { // _this.removeClass('animate'); } else if ($(window).scrollTop() > _this.offset().top - $(window).height() * _distance) { _this.addClass('animate'); } }); $(window).scroll(function() { ele.each(function() { var _this = $(this); if (_this.offset().top > $(window).scrollTop() + $(window).height() || _this.offset().top < $(window).scrollTop() - _this.outerHeight()) { // _this.removeClass('animate'); } else if ($(window).scrollTop() > _this.offset().top - $(window).height() * _distance) { _this.addClass('animate'); } }); }); } function _showToTop() { var h = $(window).height(); if($(window).scrollTop()>h/3) { $('.side-always').stop().fadeIn(); }else { $('.side-always').stop().fadeOut(); } } // 纵向滚动条 function scrolly(ele) { ele.mCustomScrollbar({ axis:'y', // horizontal scrollba autoHideScrollbar: true, mouseWheel:{ preventDefault:false } }); } function scrolly2(ele) { ele.mCustomScrollbar({ axis:'y', // horizontal scrollba autoHideScrollbar: false, mouseWheel:{ preventDefault:false } }); } // 纵向滚动条 function scrollX(ele) { ele.mCustomScrollbar({ axis:'x', // horizontal scrollba autoHideScrollbar: false, mouseWheel:{ preventDefault:false } }); } // 表单下拉 function showOptions(ele) { var topEle = ele.find('.section-top'); var optionsWrap = ele.find('.options-wrap'); topEle.on('click',function(){ if(ele.hasClass('cur')) { ele.removeClass('cur'); optionsWrap.stop().slideUp(); $('.hide-option-btn').stop().fadeOut(); }else { ele.addClass('cur'); optionsWrap.stop().slideDown(); $('.hide-option-btn').stop().fadeIn(); } }) } function hideOptions(ele) { var topEle = ele.find('.section-top'); var optionsWrap = ele.find('.options-wrap'); var optionItem = ele.find('.options-item'); optionItem.on('click',function(){ var _txt = $(this).html(); ele.removeClass('cur'); topEle.html(_txt); optionsWrap.stop().slideUp(); var _dataid = $(this).attr('data-id'); topEle.attr('data-id',_dataid); $('.hide-option-btn').stop().fadeOut(); }) } // 表单下拉end //少于指定轮播个数,隐藏点点点 function hide_Swiper_Hd(el1,el2,width,size) { var _s = el1.size(); var _w = $(window).width(); if(_w > width && _s < size) { el2.css('display','none'); } } // function hide_Swiper_Hd2(el1,el2,size) { // var _s = el1.size(); // if(_s < size) { // el2.css('display','none'); // } // } // function _serviceLoadBg() { // $('.service-item').each(function(){ // var _this = $(this); // var _serviceImg = _this.find('.service-bg').data('src'); // var serviceImgs = []; // serviceImgs.push(_serviceImg); // _PreLoadImg(serviceImgs,function(){ // _this.find('.loaddings').fadeOut(50); // _this.find('.service-bg').attr("style","background-image:url("+_serviceImg+")"); // }); // }) // } // 加载banner图片 function innerBannerBg() { if($('.inner-banner').length>0) { var innerBannerimgs = []; var _innerPcImg1 = $('.inner-banner .pc-img').data('src') innerBannerimgs.push(_innerPcImg1); _PreLoadImg(innerBannerimgs,function(){ $('.inner-banner').find('.loaddings').fadeOut(50); $('.inner-banner .js-m2').addClass('animate'); $('.inner-banner .pc-img').attr("style","background-image:url("+_innerPcImg1+")"); }); } } // 加载banner图片end _headerBg(); function _headerBg() { var _welcome = $('.welcome').size(); if(_welcome<1) { $('.header').addClass('bgf'); } } innerBannerBg(); // function innerBanner(){ // if($('.inner-banner').length>0){ // var _hh = $(window).height(); // $(window).scroll(function(){ // var k2 = $(window).scrollTop()/2 -60; // $(".inner-banner").css("background-position-y",k2); // }) // } // }; // function margin0(el,n) { // $(el).each(function() { // var i = $(this).index()+1; // if(i%n == 0) { // $(this).css('margin-right',0); // $(this).addClass('special1'); // } // }) // } // 头底及公共函数 $(function(){ wow = new WOW( { boxClass: 'wow', // default animateClass: 'animated', // default offset: 100, // default 0 mobile: true, // default live: true // default }); wow.init(); // innerBanner(); scrollAni($('.js-m'),.88); scrollAni($('.js-opacity'),.88); $('.header').addClass('animate'); $('body').on('click','.hide-option-btn',function(){ $(this).stop().fadeOut(); $('.form-section').removeClass('cur'); $('.options-wrap').stop().slideUp(); }) // $('.header-nav .nav-item').hover(function(){ // $(this).find('.sub-hides').stop().slideDown().parent().siblings().find('.sub-hides').stop().slideUp(); // },function(){ // $(this).find('.sub-hides').stop().slideUp(); // }); // $('.header-nav .sub-a').click(function(){ // $(this).parents('.nav-item').find('.sub-hides').stop().slideUp(); // }) $('body').on('click','.unable-a',function(){ $('.form-bg1').stop().fadeIn(); setTimeout(function(){ $('.message-contents').addClass('show'); }, 200); }) $('.feedback-close,.form-bg1,.contact-form-bg').click(function(){ $('.message-contents').removeClass('show'); setTimeout(function(){ $('.form-bg0').stop().fadeOut(); }, 200); }); function _showToTop() { var h = $(window).height(); if($(window).scrollTop()>h/3) { $('.side-always').stop().fadeIn(); }else { $('.side-always').stop().fadeOut(); } } _showToTop(); $(window).scroll(function(){ _showToTop(); }); $('.news-return-a').click(function(){ window.history.go(-1); }); $('.toTop-item').click(function(){ $("html,body").animate({"scrollTop": "0px"}, "slow"); }); // getHref(); });