$(document).ready(function() { // 资质证书预览 $('.honorWrap').magnificPopup({ delegate: 'a', type: 'image', tLoading: 'Loading image ...', mainClass: 'mfp-img-mobile', gallery: { enabled: true, navigateByImgClick: true, preload: [0,1] // Will preload 0 - before current, and 1 after the current image } }); // 返回顶部 //当滚动条的位置处于距顶部300像素以下时,.goTop出现,否则消失 $(window).scroll(function(){ if ($(window).scrollTop()>300){ $("#toTop").fadeIn(500); }else{ $("#toTop").fadeOut(500); } }); //当点击跳转链接后,回到页面顶部位置 $("#toTop").click(function(){ $('body,html').animate({scrollTop:0},500); return false; }); }); //联系客服 function cusServe(){ //window.open("http://chxtec.udesk.cn/im_client?cur_url=" + escape(location.href) + "&pre_url=" + escape(document.referrer), "udesk_im", "width=780,height=560,top=200,left=350,resizable=yes"); window.open("https://huanxin.deskpro.cn/webimabc/im.html?configId=98e705aa-2e1d-4473-a215-47a8b50bb1b3&restServer=hxim.deskpro.cn&xmppServer=scim.deskpro.cn&source=甘肃成兴信息科技有限公司网站"); }