전체 글 (127) 썸네일형 리스트형 [css] cubic-bezier .box { animation-name: boxKeyframes; -webkit-animation-duration: 170ms; -webkit-animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); } @-webkit-keyframes boxKeyframes{ from{ background-color: rgba(0,0,0,0); } to { background-color: rgba(0,0,0,0.7); } } kutar37.tistory.com/entry/CSS-cubic-bezier%EB%9E%80 CSS : cubic-bezier란? cubic-bezier란? cubic-bezier() function은 CSS에서 transition.. [css] webkit keyframes .box { animation-name: boxKeyframes; -webkit-animation-duration: 170ms; } @-webkit-keyframes boxKeyframes{ from{ background-color: rgba(0,0,0,0); } to { background-color: rgba(0,0,0,0.7); } } 애니메이션 사용 선언 [Javascript] setTimeout setTimeout setTimeout(function(){ //code }, 1000); // 1000 = 1s 1000 = 1s 인데, 1초 후에 function 안에 코드를 실행 시키겠다는 의미 이전 1 ··· 24 25 26 27 28 29 30 ··· 43 다음