210720 UIUX WebDesign jQuery 연습_11_4(index.html -> common.js)

ITisIT210·2021년 7월 25일
0

jQuery

목록 보기
124/142
post-thumbnail
$(document).ready(function () {
    $(".depth2").hide();

    $(".gnb > li").on("mouseenter", function() {
        $(this).children(".depth2").stop().slideDown(500);
    });

    $(".gnb > li").on("mouseleave", function() {
        $(this).children(".depth2").stop().slideUp(500);
    });
});
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글