헤드 블루 파티클 제작시 before를 지정하는 대신에 li에 클래스를 추가하여 효과를 줌.
header .gnb ul.gnb_title li:before {
transition: 0.3s;
opacity: 10%;
content: '';
position: absolute;
width: 0;
height: 5px;
bottom: 0;
left: 50%;
background: #02346b;
}
header .gnb ul.gnb_title li.on:before {
opacity: 100%;
width: 100%;
left: 0;
}
/* 반복문 이미지 교체 */
var p_no = $(".part a:last-child").index();
var i;
for(i = 0; i <= p_no; i++){
$(".part .category a").eq(i).children().css({"background-image":"url(images/h"+(i+1)+".png)"});
};
$(".part .category a").hover(function(){
bp = $(this).index() + 1;
$(this).children().css({"background-image":"url(images/hb"+bp+".png)"});
},
function(){
$(this).children().css({"background-image":"url(images/h"+bp+".png)"});
})
@media (max-width:770px) { /* 모바일용 */
.pc { display: none;}
}
@media (max-width:1030px) { /* 태블릿 */
.re_s { display: none;}
}
@media (max-width:1280px) { /* 노트북 */
.re_l { display: none;}
header .fnb .side > a {display: none;}
}
@media (min-width:1281px) { /* PC용 */
.mob { display: none;}
}