210713 UIUX WebDesign jQuery 연습_3_4(index.html -> common.js)

ITisIT210·2021년 7월 17일
0

jQuery

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

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

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

0개의 댓글