/* * Name: KEPCO * Part: JavaScript for design * Author : [써냐]BLUEWEBD™ */ /* design for CSS*/ $(document).ready(function() { colRowSpanBorder(); // colspan, rowspan border 제어 staffListPn(); /*스포츠단*/ /* 이미지 갤러리 미리보기 리스트 이미지 오버효과 */ var thumbOj = $('.thumbMask'); var thumbMask = $('.thumbMask img'); thumbOj.each(function() { $(this).hover(function(){ var objThisParntOn = $(this).parents('li') $(this).css({ "height":"100%", "background":"#000" }); $(this).find('img').css({ "opacity":"0.5" }); if(objThisParntOn.hasClass('on')){ $(this).css({ "background-color":"none", "opacity":"1" }); $(this).find('img').css({ "opacity":"1" }); } },function(){ thumbOj.css({ "background":"none" }); thumbMask.css({ "opacity":"1" }); }); }); /*선수상세 리스트 오버시*/ thumbOver(); }); var staffListPn = function(){ /* staff list*/ var staffDirector = $('.staff.director'); var staffList = $('.staff_list .staff'); for(i=0 ; i 1){ $(this).css({"border-bottom":"none"}); }; if($('.table_list thead tr:first-child th:last-child').eq(index).attr('rowspan') > 1){ $('.table_list thead tr:first-child th:last-child') .css('border-left','1px solid #d4d4d4'); }; }); } var thumbOver = function(){ $('.gallery_perv_box .gallery_box ul.gallery_list li a').on('mouseenter focusin', function(){ if($(this).parent().hasClass('on')){ $(this).find('img').css({'opacity': '1'}); $(this).find('.bg02, .bg03').css({'background': 'none'}) }else{ $(this).find('img').css({'opacity': '0.5'}); } }) $('.gallery_perv_box .gallery_box ul.gallery_list li a').on('mouseleave focusout', function(){ $(this).find('img').css({'opacity': '1'}); }) }