$(document).ready(function () { ////////////////////// °¶·¯¸® °Ô½ÃÆÇ ¸®½ºÆ® ÆäÀÌÁö $('[style]').removeAttr('style'); $('.sul_menu').addClass('cate_menu'); // Á¦¸ñ ÅÂ±× Å¬·¡½º Ãß°¡ $('.gal_list .bbsnewf5 img').each(function () { var imgSrc = $(this).attr('src'); // img ¿ä¼Ò°¡ src ¼Ó¼ºÀ» °¡Áö°í ÀÖ°í, ±× src°¡ À̹ÌÁö ÆÄÀÏÀ» °¡¸®Å°´ÂÁö È®ÀÎ if (imgSrc && imgSrc.match(/\.(jpg|jpeg|png|gif)$/i)) { $(this).closest('td').addClass('gallery_img'); } }); // font ¾È¿¡ ÀÖ´Â ÅØ½ºÆ®¸¦ ±âÁØÀ¸·Î °¢ ű׿¡ Ŭ·¡½º ºÎ¿© $('.gallery_etc font').each(function () { var text = $(this).text().trim(); // °ø¹é Á¦°Å ÈÄ ÅØ½ºÆ® °¡Á®¿À±â if (text.includes('±¸ºÐ')) { $(this).addClass('category'); } else if (text.includes('¹ßÁÖó')) { $(this).addClass('clients'); } else if (text.includes('¼öÇ࿬µµ')) { $(this).addClass('year'); } else if (text.includes('Ű¿öµå1')) { $(this).addClass('key1'); } else if (text.includes('Ű¿öµå2')) { $(this).addClass('key2'); } }); // °¢ ±¸ºÐ ÅØ½ºÆ® »èÁ¦ $('.gallery_etc .category').each(function() { $(this).text($(this).text().replace('±¸ºÐ : ', '')); }); $('.gallery_etc .clients').each(function() { $(this).text($(this).text().replace('¹ßÁÖó : ', '')); }); $('.gallery_etc .year').each(function() { $(this).text($(this).text().replace('¼öÇ࿬µµ : ', '')); }); $('.gallery_etc .key1').each(function() { $(this).text($(this).text().replace('Ű¿öµå1 : ', '')); }); $('.gallery_etc .key2').each(function() { $(this).text($(this).text().replace('Ű¿öµå2 : ', '')); }); $('.gal_list > tbody > tr').each(function() { const $inputCheck = $(this).find('input[type="checkbox"]'); $inputCheck.addClass('gallery_check'); }); $('.gallery_check').parent('td').addClass('gallery_check_wrap'); // .year¿Í .clients¸¦ .gallery_subject·Î À̵¿ $('.gal_list > tbody > tr').each(function() { const $year = $(this).find('.gallery_etc .year'); const $clients = $(this).find('.gallery_etc .clients'); const $gallerySubject = $(this).find('.gallery_subject'); $gallerySubject.append($clients).append($year); }); // key1°ú key2¸¦ ÇÔ²² .keyword·Î °¨½Î±â $('.gal_list > tbody > tr').each(function() { const $key1 = $(this).find('.gallery_etc .key1'); const $key2 = $(this).find('.gallery_etc .key2'); if ($key1.length && $key2.length) { $key1.add($key2).wrapAll('
'); } }); ////////////////////////// °¶·¯¸® °Ô½ÃÆÇ ºäÆäÀÌÁö $('#container').has('.gal_view').addClass('gal_view_wrap'); $('.gal_view').each(function() { var bgWrap = $(this).parents().siblings('.bg_wrap'); // °¡Àå °¡±î¿î .bg_wrap¿¡ CSS Ãß°¡ bgWrap.css({ 'display' : 'none' }); }); $('.gal_view img').each(function() { const src = $(this).attr('src'); // À̹ÌÁöÀÇ src ¼Ó¼º °ª °¡Á®¿À±â if (src) { const lowerSrc = src.toLowerCase(); // ¼Ò¹®ÀÚ·Î º¯È¯ if (lowerSrc.includes('thumb')) { $(this).addClass('thumb'); // 'thumb' Æ÷ÇÔ } if (lowerSrc.includes('pc')) { $(this).addClass('pc'); // 'pc' Æ÷ÇÔ } if (lowerSrc.includes('mobile')) { $(this).addClass('mobile'); // 'mobile' Æ÷ÇÔ } } }); // font ¾È¿¡ ÀÖ´Â ÅØ½ºÆ®¸¦ ±âÁØÀ¸·Î °¢ ű׿¡ Ŭ·¡½º ºÎ¿© $('.gal_view_cont tr').each(function () { var text = $(this).find('.board_bgcolor').text().trim(); // °ø¹é Á¦°Å ÈÄ ÅØ½ºÆ® °¡Á®¿À±â if (text.includes('Á¦¸ñ')) { $(this).addClass('subject'); } else if (text.includes('±¸ºÐ')) { $(this).addClass('category'); } else if (text.includes('¹ßÁÖó')) { $(this).addClass('clients'); } else if (text.includes('¼öÇ࿬µµ')) { $(this).addClass('year'); } else if (text.includes('ÇÁ·ÎÁ§Æ®¹üÀ§')) { $(this).addClass('scope'); } }); $('#post_area').closest('tr').addClass('content'); });