티스토리 뷰
function gnb(){
$('#gnb > li').on('mouseenter',function(e){
if($(this).children('a').next('ul').length){
$(this).children('a').next('ul').stop().fadeIn(200);
$('#gnb > li').not(this).children('a').next('ul').stop().fadeOut(200);
$('.nav').stop().animate({
'height':'100px'
}, 100);
}else{
$('.sub-gnb').stop().fadeOut(200);
$('.nav').stop().animate({
'height':'65px'
}, 100);
}
});
$('#gnb').on('mouseleave',function(e){
$('.sub-gnb').stop().fadeOut(200);
$('.nav').stop().animate({
'height':'65px'
}, 100);
});
}
'WebPublisher' 카테고리의 다른 글
[slick] 슬라이드 롤링 시마다 애니메이션 실행 (0) | 2021.04.06 |
---|---|
[jQuery] 높이값 받아와서 롤링배너 높이값 지정 (0) | 2021.03.24 |
[checkbox] 체크박스 on off checked (0) | 2021.03.24 |
[jQuery] tab contents 탭 선택 (0) | 2021.03.24 |
[html] DL / DT / DD 태그 (0) | 2021.03.01 |
공지사항