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
- 셀렉트박스 커스텀
- egov spring ajax 사용 예시
- Ionic modal
- 아이오닉 스크롤 이벤트
- route
- Angular Router
- ajax 사용 예시
- 앵귤러 모달
- 스크롤 이벤트 감지
- 호버
- angular button
- scroll
- TAILWIND
- modal
- 옵저버블
- angular animation
- prisma
- angular modal
- summary
- formgroup
- 앵귤러 애니메이션
- ApexChart
- 스크롤 이벤트
- angular route
- Oracle LISTAGG 사용 예시
- mysql if
- 모달
- Router
- flex-1
- 검색
Archives
- Today
- Total
깜놀하는 해므찌로
Angular 특정 영역 외 외부 영역 클릭 시 dropbox 닫기 본문
반응형
SMALL
import {
Component,
HostListener,
ElementRef,
} from '@angular/core';
constructor(private outArea: ElementRef<HTMLDivElement>) {}
@HostListener('document:mousedown', ['$event'])
clickOut(event: any) {
if (!this.outArea.nativeElement.contains(event.targat)) {
this.isOpen = false;
return;
}
}
반응형
LIST
'IT' 카테고리의 다른 글
C언어 <string.h> strlen (0) | 2023.05.04 |
---|---|
Angular @ViewChildren 설명 및 예시 (0) | 2023.05.03 |
CSS hover 글씨 커지는 애니메이션 효과 tailwind (0) | 2023.05.03 |
C언어 문자열 개수 카운트 예시 (0) | 2023.05.03 |
Angular Ionic ion-input 값 셋팅 예시 (0) | 2023.05.02 |