일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- formgroup
- 모달
- Angular Router
- egov spring ajax 사용 예시
- 검색
- route
- scroll
- ApexChart
- angular route
- ajax 사용 예시
- 옵저버블
- Oracle LISTAGG 사용 예시
- 앵귤러 모달
- mysql if
- 스크롤 이벤트
- 호버
- 셀렉트박스 커스텀
- modal
- flex-1
- angular modal
- 앵귤러 애니메이션
- Ionic modal
- summary
- angular animation
- 스크롤 이벤트 감지
- prisma
- 아이오닉 스크롤 이벤트
- angular button
- Router
- TAILWIND
- Today
- Total
목록앵귤러 애니메이션 (5)
깜놀하는 해므찌로
export const bounce = [ trigger('bounce', [ state('true', style({ transform: 'translateY(0px)' })), state('false', style({ transform: 'translateY(-20px)' })), transition('* *', [animate('{{ duration }}ms')], { params: { duration: '2000' }, }), ]), ]; 1. trasition : * * 무한 반복을 위해 사용합니다. 어떤 상태값으로 이동하던 발동되도록 설정 2. duration 파라미터를 사용하며 기본 값 2000ms 설정 import { bounce } from '../../animations/scroll-an..

ng generate directive MyDirective 0. 디렉티브 생성 cli import { AnimationPlayer } from '@angular/animations'; import { coerceBooleanProperty, coerceNumberProperty, } from '@angular/cdk/coercion'; import { AfterContentInit, AfterViewInit, Directive, ElementRef, Input, Renderer2, } from '@angular/core'; import { ScrollAnimation, ScrollAnimationService, } from './scroll-animation.service'; @Directive({ s..

1. app.config.ts import { ApplicationConfig, importProvidersFrom } from '@angular/core'; import { provideRouter, withEnabledBlockingInitialNavigation, RouteReuseStrategy, } from '@angular/router'; import { appRoutes } from './app.routes'; import { BrowserModule } from '@angular/platform-browser'; import { IonicModule, IonicRouteStrategy } from '@ionic/angular'; // 애니메이션 쓰려면 추가 import { BrowserAn..
[ngClass]="setTopbarStyle()" scrollAnimation="introTop"> import { AnimationBuilder } from '@angular/animations'; import { Injectable } from '@angular/core'; import { fromFadeIn, fromFadeOut, toFadeIn, toFadeOut } from './animation/fade.animation'; import { fromFocusIn, toFocusIn } from './animation/fucus.animation'; import { fromIntroBottom, fromIntroBottomStagger, fromIntroleft, fromIntroRight,..
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..