몽땅뚝딱 개발자

[인프런] 인터랙티브 웹 개발 제대로 시작하기 본문

STUDY/2023

[인프런] 인터랙티브 웹 개발 제대로 시작하기

레오나르도 다빈츠 2023. 4. 20. 16:05

 

 

 


 

 

 

 

[CSS] Transform

◽ Transform을 사용하는 이유 - 하드웨어 가속을 사용(GPU를 사용) 속력과 성능이 굉장히 좋다. CSS3를 적극적으로 사용할 수 있다면 transform을 사용하는 것이 좋다. position: absolute와 top, left를 사용하

be-a-weapon.tistory.com

 

 

[CSS] Transition

◽ Transition - transition-property: all; - transition-duration: 1s; - transition-timing-function: ease; - transition-delay: 0s; transition: 1s 2s; // 1초동안 발생, 2초간 딜레이 transition-timing-function의 종류 - linear: 가속도 없이 일

be-a-weapon.tistory.com

 

[CSS] animation과 keyframe

◽ animation - frame by frame animation은 gif를 사용하면 이미지 깨짐현상 등으로 의도한대로 노출되지 않을 수 있다. 애니메이션을 CSS로 구현하면 커스텀이 쉽다. @keyframes dot { 0% { opacity: 0.2; } 25% { opacity

be-a-weapon.tistory.com

 

 

[CSS] 3D

◽️ 카드 만들기 .contents-place { .card { // ... transition: 1s; transform: rotateY(0deg); // 미리 준비시켜야 성능에 좋다. transform-origin: left; // 변경이 일어나는 위치를 바꿀 수 있다. } &:hover { .card { transform: rot

be-a-weapon.tistory.com

 

 

Comments