프론트엔드-코드/CSS

transition

sdafdq 2023. 8. 9. 11:50
.instagram .box2{width: 200px; height: 50px; border: 2px solid brown; background-color: peru; line-height: 50px; padding: 0 10px;
/* transition-duration: .5s;
transition-property: all;
transition-timing-function: ease;
transition-delay: .2s;
*/
  transition: width .5s ease, background .5s .9s;
}



.instagram .box2:hover{width: 250px; background-color: yellowgreen;}

transition: width .5s ease, background .5s .9s;

여기서 숫자시 첫번째는 duration, 두번째는 delay. 

 

 

 

transition:all 0.3s ease-in-out;

이건 프로퍼티, duration, 변화함수.

 

 

 

transition: transform .5s;
 
transition: transform .5s, background-color 1s;

이렇게 가능

 

'프론트엔드-코드 > CSS' 카테고리의 다른 글

백그라운드 이미지  (0) 2023.08.14
부모 선택하는법  (0) 2023.08.09
transform  (0) 2023.08.09
css 계산  (0) 2023.07.28
vw vh  (0) 2023.07.28