function scroll_ani() { 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 - 50)) { setTimeout(function () { $(this).addClass("scrolled"); }.bind(this), i * 100); } }); if (window_height + t + 50 >= 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"); 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_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_portalResEbizads_banner-01001 .ad-tit"); this.add(".c_portalResEbizads_banner-01001 .ad-line"); this.add(".c_portalResEbizads_banner-01001 .ad-sum"); this.add(".c_portalResProduct_category-01001 .cn_cateItem"); this.add(".c_portalResComplaintPage_detail-01001 p"); this.add(".c_portalResComplaintPage_detail-01001 h2"); this.add(".c_portalResComplaintPage_detail-01001 a"); $(window).scroll(function () { handle(); }); setTimeout(function () { handle(); }, 500); } }; }; $(function () { var body = $("body"); if (isFrontEnv()) { body.addClass("wd"); var _sa = scroll_ani(); _sa.add(".c_portalResIntro_category-01001 .NavList_a1 li"); _sa.add(".c_portalResIntro_category-01001 .cn_cateli"); _sa.add(".c_portalResProduct_list-01001008 .PhotoList_k1 li"); _sa.add(".cn_cateBox .cn_cateItem .col-xs-12 .cn_cateinfoBox"); _sa.add(".cn_cateBox .cn_cateItem .col-xs-12 .cn_cateinfoBox h2"); _sa.add(".cn_cateBox .cn_cateItem .col-xs-12 .cn_cateinfoBox p"); _sa.add(".cn_cateBox .cn_cateItem .col-xs-12 .cn_cateinfoBox a"); _sa.add(".c_portalResnav_main-01001 h2"); _sa.add(".c_portalResnav_main-01001 a"); _sa.add(".c_portalResPublic_websiteShare-01001"); _sa.add("#w_grid-1611307730831"); _sa.add(".w_grid-000"); _sa.add(".c_portalResProduct_list-01001011 .p_Product"); _sa.init(); setTimeout(function () { body.addClass("wd-show"); }, 500); } else { body.addClass("make"); } }); $(function () { /* $('body').bind('mousewheel', function (event, deltaY) { event.preventDefault(); if (deltaY > 0) { $('body').animate({ scrollTop: ( $('body').scrollTop() - 65) }, 1000 ); } else if (deltaY < 0) { $('body').animate({ scrollTop:( $('body').scrollTop() + 65 )}, 1000 ); } return false; });*/ });