편집 요약 없음 |
편집 요약 없음 |
||
60번째 줄: | 60번째 줄: | ||
content.toggle(); // 애니메이션 없이 바로 토글 | content.toggle(); // 애니메이션 없이 바로 토글 | ||
// 접힌 소제목의 | // 접힌 소제목의 투명도 낮추기 | ||
if (content.is(':visible')) { | if (content.is(':visible')) { | ||
$(this).css(' | $(this).css('opacity', '1'); // 펼쳐졌을 때 불투명하게 | ||
} else { | } else { | ||
$(this).css(' | $(this).css('opacity', '0.6'); // 접혔을 때 투명하게 | ||
} | } | ||
}); | }); |