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

ITisIT210·2021년 7월 17일
0

jQuery

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

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

0개의 댓글