일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- angular modal
- ajax 사용 예시
- route
- angular animation
- 셀렉트박스 커스텀
- 스크롤 이벤트 감지
- 스크롤 이벤트
- ApexChart
- Router
- 아이오닉 스크롤 이벤트
- 앵귤러 모달
- 앵귤러 애니메이션
- angular button
- Oracle LISTAGG 사용 예시
- 검색
- angular route
- formgroup
- mysql if
- modal
- Ionic modal
- TAILWIND
- 모달
- scroll
- flex-1
- egov spring ajax 사용 예시
- summary
- Angular Router
- prisma
- 호버
- 옵저버블
- Today
- Total
목록angular animation (4)
깜놀하는 해므찌로
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,..