jQuery : Animation(애니메이션) 1
DOCTYPE html> jQuery - Animation .gray-box > h1 { background-color: orange; color: navy; padding: 1em; border-radius: 8px; /* 시각 효과를 이용하는 요소들을 */ /* 숨길 때 display 속성을 통해야만 숨겨야한다. */ display: none; } .buttons { width: max-content; margin: 0 auto; } .buttons > button { font-size: 0.8em; } $(function() { // 시각 효과 메서드의 매개 변수 // - duration : 효과 진행 시간 // - complete : 효과 진행이 끝난 다음 수행 시간() var $hello1 = ..
2023.03.16