.animate()구문 활용

Jiwontwopunch·2021년 12월 13일
0

독학

목록 보기
8/102
post-thumbnail
       <div></div>
        div {
            width: 300px;
            height: 300px;
            background-color: cornflowerblue;
            margin: 100px, auto;
        }
       $(document).ready(function(){
           $("div").on("mouseenter", function(){
               $("div").stop().animate(
                 {"width":"500px","height":"500px"},800); 
             // 800= 0.8s
             // .stop() 구문으로 중첩 현상 없애기
           })
           $("div").on("mouseleave", function(){
               $("div").stop().animate(
                 {"width":"300px","height":"300px"},800);
           });
       });


0개의 댓글