210716 UIUX WebDesign jQuery 연습_10_6(index.html -> main.js)

ITisIT210·2021년 7월 17일
0

jQuery

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

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

    $(".gnb > li").on("mouseleave", function() {
        $(this).children(".depth2").stop().slideUp();
    });

    $(".ban").slick({
        autoplay: true,
        autoplaySpeed: 5000,
        dots: true,
        infinite: true,
        speed: 300,
        slidesToShow: 1,
        adaptiveHeight: true,
    });
});
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글