$(function () { var body = $("body"); if (isFrontEnv()) { } else { body.addClass("make"); } }); 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 - 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"); this.add(".w_fbtn-001"); this.add(".w_ficon-001"); this.add(".w_fline-001"); this.add(".w_fimgbox-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 .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(".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_portalResBreadcrumb_nav-01001"); $(window).scroll(function () { handle(); }); handle(); } }; }