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

ITisIT210·2021년 7월 17일
0

jQuery

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

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

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

0개의 댓글