Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- angular modal
- 호버
- ajax 사용 예시
- summary
- angular route
- 스크롤 이벤트 감지
- modal
- Ionic modal
- route
- angular animation
- egov spring ajax 사용 예시
- formgroup
- scroll
- 검색
- Angular Router
- Oracle LISTAGG 사용 예시
- 아이오닉 스크롤 이벤트
- Router
- angular button
- prisma
- TAILWIND
- flex-1
- 스크롤 이벤트
- ApexChart
- 셀렉트박스 커스텀
- 앵귤러 애니메이션
- 모달
- 앵귤러 모달
- mysql if
- 옵저버블
Archives
- Today
- Total
목록애니메이션 조건 (1)
깜놀하는 해므찌로
Angular Animation condition 앵귤러 애니메이션 조건 예시
import { animate, keyframes, query, stagger, state, style, transition, trigger, } from '@angular/animations'; // 필요한 모듈 로드 export const fadeIn = trigger('fadeIn', [ // 이름 설정 transition('inactive => active', [ // 비활성->활성 상태로 변경 시 animate( '2s cubic-bezier(0.250, 0.460, 0.450, 0.940)', keyframes([ style({ transform: 'translateX(-50px)', opacity: '0', offset: 0, }), style({ transform: 'translateX(0..
IT
2023. 5. 27. 12:59