var wd = {}; $(function() { wd.body = $("body"); if (isFrontEnv()) { wd.body.addClass("wd"); wd.common(); wd.index(); setTimeout(function() { wd.body.addClass("wd-show"); }, 300); } else { wd.body.addClass("make"); } }); wd.common = function() { }; wd.index = function() { if(location.pathname == "/home.html" || location.pathname === "") { var _sa = wd.scroll_ani(); _sa.init(); } else { this.sub(); } }; wd.sub = function() { var _sa = wd.scroll_ani(); _sa.add(".e_FlowCommonStyleBox-001"); _sa.add("#c_portalResProduct_list-15793371985470734 .pro_jieshao"); _sa.add("#c_portalResProduct_list-15793371985470734 .proLi"); _sa.add("#w_grid-1595379259451"); _sa.add("#w_grid-1602473632048"); _sa.add(".c_portalResNews_detail-01001 .p_imgsBox"); _sa.add("#c_portalResEmploy_list-15937458040139833"); _sa.add("#c_portalResEmploy_list-15937458040139833 .recruit-tit"); _sa.add("#c_portalResEmploy_list-15937458040139833 .job-list"); _sa.init(); }; wd.scroll_ani = function() { var window_height = $(window).height(); var body = $("body"); function handle() { var t = $(window).scrollTop(); var w = $(".w-scroll-ani:not(.scrolled)"); w.each(function(i) { var top = $(this).offset().top; if(top < (window_height + t - 100)) { setTimeout(function() { $(this).addClass("scrolled"); }.bind(this), i*100); } }); if(window_height + t + 200 >= body.height()) { $(".w-scroll-ani:not(.scrolled)").each(function(i) { var top = $(this).offset().top; if(top > (body.height() - window_height)) { setTimeout(function() { $(this).addClass("scrolled"); }.bind(this), i*100); } }); } } return { add:function(a) { $(a).addClass("w-scroll-ani"); return this.add; }, init:function() { this.add("div[id^='w_common_text-']"); this.add(".w_fimg-000:not('#w_fimg-1588148032942')"); this.add(".w_fbtn-001"); this.add(".w_ficon-001"); this.add(".w_fline-001"); this.add("div[class*='c_portalResProduct_detail']"); this.add(".c_portalResMessage_form-01001"); this.add(".c_portalResMessage_form-01001005"); this.add(".c_portalResEbizads_banner-01001"); this.add(".c_portalResEbizads_banner-01001 .bannerTitle"); this.add(".c_portalResEbizads_banner-01001 .summry"); this.add(".c_portalResProduct_list-01001001 .PhotoList_k1 li"); this.add(".c_portalResnav_main-01001 .top-nav"); this.add(".c_portalResIntro_detail-01001"); this.add(".w_fimgbox-001"); this.add(".c_portalResNews_list-01001 .newList"); this.add(".c_portalResNews_detail-01001 .p_header"); this.add(".c_portalResNews_detail-01001 .p_dataSource"); this.add(".c_portalResNews_detail-01001 .p_summary"); this.add(".c_portalResNews_detail-01001 .p_articles"); this.add(".c_portalResNews_detail-01001 .p_PrevAndNext"); this.add(".c_portalResProduct_list-01001"); this.add(".c_portalResNews_list-01001 .p_articles"); this.add(".c_portalResEmploy_list-01001 .jobList"); this.add(".c_portalResProduct_list-01001 .p_Product"); this.add(".c_portalResSearch_total-01001"); this.add(".c_portalResPublic_websiteShare-01001 .iShare a"); this.add(".c_portalResPublic_codeContainer-01001"); this.add(".wd-20201127092601 li"); this.add(".c_portalResPublic_codeContainer-01001003"); this.add(".p_OccupyBox"); this.add(".c_portalResBreadcrumb_nav-01001 .p_breadcrumbList"); $(window).scroll(function() { handle(); }); handle(); } }; };