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

ITisIT210·2021년 7월 17일
0

jQuery

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

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

    $(".gnb > li").on("mouseleave", function() {
        $(".dp2, .dp2_bg").stop().slideUp(300);
    });

    // gotop
    $(".gotop").on("click", function() {
        $("html, body").stop().animate({
            "scrollTop" : 0
        });
    });
});
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글