$("nav ul li").mouseenter(function(){
let idx = $(this).index();
$(".sub_gnb>li").removeClass("on").eq(idx).addClass("on");
});
$(".sub_gnb").mouseleave(function(){
$(this).find("li").removeClass("on");
})
See the Pen subgnb width100% by sangmok-ye (@sangmok-ye) on CodePen.
'js' 카테고리의 다른 글
[js]array 배열 기초 (0) | 2022.05.20 |
---|---|
[js]제이쿼리 이벤트 연속 등록 여러개 (0) | 2022.05.20 |
[js]addClass 함수로 지정하기 (0) | 2022.05.13 |
[js]swiper 스와이퍼 기본 구조 및 속성 (0) | 2022.05.12 |
[js]input checkbox 전체 선택 시 버튼 활성화 (prop) (0) | 2022.05.04 |