ARBITER.init('TEAMCHUNGCHY', ['datatables','datatables.api','layerpopup'], function(dom, arbi) { var publicObj; /** * ¿ÜºÎ¿¡¼­ ÂüÁ¶ ÇØ¾ß ÇÒ ÇÔ¼ö°¡ ÀÖ´Â °æ¿ì À̰÷¿¡ Á¤ÀÇ ÇϽʽÿÀ. * ex) arbi.get('MEMBER_LISTS').test(); */ publicObj = { }; function initialize() { initView(); attachEventHandler(); } function initView() { } function attachEventHandler() { // section04 tap in tap click $(".tab_in_tap li").click(function() { $(this).siblings("li").removeClass("act"); $(this).addClass("act"); }); // section04 tap-in-tap $(".sub04_01teamChungchy .section04 .tab_in_tap li").click(function() { var thisInd = $(this).index(); $(".sub04_01teamChungchy .section04 .item_list").removeClass("act"); $(".sub04_01teamChungchy .section04 .item_list").eq(thisInd).addClass("act"); $(".sub04_01teamChungchy .section04 p.info").removeClass("act"); $(".sub04_01teamChungchy .section04 p.info").eq(thisInd).addClass("act"); }); var listClone = $(".sub04_01teamChungchy .section07 .work_list_wrap .work_list").clone(); $(".sub04_01teamChungchy .section07 .work_list_wrap").append(listClone); // section04 prev button $("#prev").on('click', function() { var idx = $('.sub04_01teamChungchy .section04 .tab_in_tap .act').index(); var listCount = $(".sub04_01teamChungchy .section04 .item_list").length - 1; if (idx == 0) { idx = listCount; } else { idx = idx - 1; } $(".sub04_01teamChungchy .section04 .tab_in_tap li").removeClass("act"); $(".sub04_01teamChungchy .section04 .tab_in_tap li").eq(idx).addClass("act"); $(".sub04_01teamChungchy .section04 .item_list").removeClass("act"); $(".sub04_01teamChungchy .section04 .item_list").eq(idx).addClass("act"); $(".sub04_01teamChungchy .section04 p.info").removeClass("act"); $(".sub04_01teamChungchy .section04 p.info").eq(idx).addClass("act"); }); // section04 next button $("#next").on('click', function() { var idx = $('.sub04_01teamChungchy .section04 .tab_in_tap .act').index(); var listCount = $(".sub04_01teamChungchy .section04 .item_list").length - 1; if (idx == listCount) { idx = 0; } else { idx = idx + 1; } $(".sub04_01teamChungchy .section04 .tab_in_tap li").removeClass("act"); $(".sub04_01teamChungchy .section04 .tab_in_tap li").eq(idx).addClass("act"); $(".sub04_01teamChungchy .section04 .item_list").removeClass("act"); $(".sub04_01teamChungchy .section04 .item_list").eq(idx).addClass("act"); $(".sub04_01teamChungchy .section04 p.info").removeClass("act"); $(".sub04_01teamChungchy .section04 p.info").eq(idx).addClass("act"); }); // sub04 "team Chungchy" section05 auto Scroll $("#scroller").simplyScroll({ speed: 1, pauseOnHover: false, pauseOnTouch: false, }); //section07 list's height $(".sub04_01teamChungchy .section07 .work_list_wrap .work_list").outerHeight($(".sub04_01teamChungchy .section07 .work_list_wrap .work_list li").outerHeight()); //section07 first child add class "act" $(".sub04_01teamChungchy .section07 .tab_in_tap li").click(function() { var listItem = $(".sub04_01teamChungchy .section07 .work_list_wrap .work_list li"); var itemWid = listItem.outerWidth(); var thisInd = $(this).index(); listItem.removeClass("act"); listItem.eq(thisInd).addClass("act"); console.log(thisInd); $(".sub04_01teamChungchy .section07 .work_list_wrap .work_list").css({ 'transform': 'translateX(' + $(this).index() * -itemWid + 'px)', }); }); } // ÃʱâÈ­ ÇÔ¼ö ½ÇÇà initialize(); return publicObj; });