Open
Conversation
Collaborator
|
캐러셀에서 호버 확대까지 ! 실습 열심히 하셨네용🤩🤩 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📝 학습 내용 요약
hover,transition,transform,animation등 기본적인 동작부터,::before,::after가상 요소를 활용한 오버레이 효과까지 실습을 통해 익혔다.@property를 사용해 CSS 변수의 타입과 초기값을 정의하고, 이 변수를 이용해 opacity를 부드럽게 조정하는 방법도 배웠다.&)과 가상 상태(:hover,:focus,:active)를 함께 사용하는 패턴도 익숙해졌다.@media와@supports를 통해 반응형·적응형 웹 구현 방법을 학습했다.📁 실습 파일 설명
4-1 인터랙티브 웹이란?
01_interactive: 이미지에 마우스를 올렸을 때 배경이 어두워지고, 텍스트가 천천히 드러나는 효과 구현.4-2 레이아웃이 서서히 노출되도록 하기
02_opacity: 제목 영역에 hover 시, 컨테이너가 fade-in 되는 전환 효과.03_transition:opacity,translate,rotate,scale속성의 변화를 이용한 시각적 전환 실습.4-3 카드 목록에서의 애니메이션
01_hover_focus_active: 마우스나 키보드 입력에 따른 UI 반응(hover,focus,active) 비교.02_transform: 카드 hover 시 회전하는 애니메이션,text-shadow로 빛 번짐 효과 추가.03_animation:@keyframes를 이용해 이미지들이 원형으로 회전하는 3D 캐러셀 구현.4-4 SVG 활용하기
01_basic:circle,rect,path등 SVG 기본 도형 요소 학습.02_animate:<animate>태그로 벡터 그래픽에 동적 효과 적용.03_stylesheet: CSS 파일을 분리해 SVG 애니메이션을 구성하는 방법 실습.4-5 반응형 웹
01_media_query: 다양한 해상도에 대응하도록 레이아웃 자동 조정.02_supports: 브라우저가 특정 기능을 지원하는지에 따라 조건부 스타일을 적용.🌟 느낀 점 및 피드백 요청 사항
transition과transform만으로도 부드럽고 직관적인 인터랙션을 만들 수 있다는 점이 인상 깊었다.