aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/animationevent/index.html
diff options
context:
space:
mode:
authoralattalatta <alattalatta@sorto.me>2022-02-19 14:38:42 +0900
committerGitHub <noreply@github.com>2022-02-19 14:38:42 +0900
commit3f7fd524042c564373a72c3805fdcaa2d6483f15 (patch)
tree4844851cae436b2293e05f2c6a4b994d7669c2c7 /files/ko/web/api/animationevent/index.html
parent90230eb2302340610957c6ef48df05ff0133e943 (diff)
downloadtranslated-content-3f7fd524042c564373a72c3805fdcaa2d6483f15.tar.gz
translated-content-3f7fd524042c564373a72c3805fdcaa2d6483f15.tar.bz2
translated-content-3f7fd524042c564373a72c3805fdcaa2d6483f15.zip
Update AnimationEvent docs (#3907)
* Update AnimationEvent docs * Add AnimationEvent.elapsedTime * Fix omitted inline code for param name * Add omitted default value desc * Clarify `pseudoElement` desc Co-authored-by: Sungwoo Park <codest99@gmail.com>
Diffstat (limited to 'files/ko/web/api/animationevent/index.html')
-rw-r--r--files/ko/web/api/animationevent/index.html78
1 files changed, 0 insertions, 78 deletions
diff --git a/files/ko/web/api/animationevent/index.html b/files/ko/web/api/animationevent/index.html
deleted file mode 100644
index 757e9a911e..0000000000
--- a/files/ko/web/api/animationevent/index.html
+++ /dev/null
@@ -1,78 +0,0 @@
----
-title: AnimationEvent
-slug: Web/API/AnimationEvent
-tags:
- - API
- - Experimental
- - Interface
- - Reference
- - Web Animations
-translation_of: Web/API/AnimationEvent
----
-<p>{{SeeCompatTable}}{{APIRef("Event")}}</p>
-
-<p><strong><code>AnimationEvent</code></strong> 인터페이스는 <a href="/ko/docs/Web/CSS/CSS_Animations/Using_CSS_animations">에니메이션</a>과 관련된 정보를 제공하는 이벤트를 나타냅니다.</p>
-
-<p>{{InheritanceDiagram}}</p>
-
-<h2 id="생성자">생성자</h2>
-
-<dl>
- <dt>{{domxref("AnimationEvent.AnimationEvent", "AnimationEvent()")}}</dt>
- <dd>주어진 매개변수로 <code>AnimationEvent</code>를 생성합니다.</dd>
-</dl>
-
-<h2 id="속성">속성</h2>
-
-<p><em>{{domxref("Event")}}의 속성을 상속합니다.</em></p>
-
-<dl>
- <dt>{{domxref("AnimationEvent.animationName")}} {{readonlyInline}}</dt>
- <dd>트랜지션과 관련된 {{cssxref("animation-name")}} CSS 속성의 값을 가진 {{domxref("DOMString")}}입니다.</dd>
- <dt>{{domxref("AnimationEvent.elapsedTime")}} {{readonlyInline}}</dt>
- <dd>애니메이션이 재생된 총 시간을 나타내는 실수입니다. 초 단위로, 애니메이션이 일시정지된 시간은 제외합니다. <code>animationstart</code> 이벤트의 <code>elapsedTime</code>은 <code>0.0</code>이지만, {{cssxref("animation-delay")}} 값이 음수였다면 대신 <code>(-1 * delay)</code>를 값으로 가집니다.</dd>
- <dt>{{domxref("AnimationEvent.pseudoElement")}} {{readonlyInline}}</dt>
- <dd>애니메이션이 재생 중인 <a href="/ko/docs/Web/CSS/Pseudo-elements">의사 요소</a>의 이름을 값으로 가진 {{domxref("DOMString")}}입니다. <code>'::'</code>으로 시작합니다. 애니메이션이 일반 요소에서 재생 중이라면 빈 문자열 <code>''</code>을 반환합니다.</dd>
-</dl>
-
-<dl>
-</dl>
-
-<h2 id="메서드">메서드</h2>
-
-<p><em>{{domxref("Event")}}</em>의 메서드를 상속합니다.</p>
-
-<dl>
- <dt>{{domxref("AnimationEvent.initAnimationEvent()")}} {{non-standard_inline}}{{deprecated_inline}}</dt>
- <dd>삭제 예정 메서드 {{domxref("Document.createEvent()", "Document.createEvent(\"AnimationEvent\")")}}를 사용해 <code>AnimationEvent</code>를 초기화합니다.</dd>
-</dl>
-
-<h2 id="명세">명세</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{ SpecName('CSS3 Animations', '#AnimationEvent-interface', 'AnimationEvent') }}</td>
- <td>{{ Spec2('CSS3 Animations') }}</td>
- <td>Initial definition.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="브라우저_호환성">브라우저 호환성</h2>
-
-<p>{{Compat("api.AnimationEvent")}}</p>
-
-<h2 id="같이_보기">같이 보기</h2>
-
-<ul>
- <li><a href="/ko/docs/Web/CSS/CSS_Animations/Using_CSS_animations">CSS 애니메이션 사용하기</a></li>
- <li>애니메이션 관련 CSS 속성과 @-규칙: {{cssxref("animation")}}, {{cssxref("animation-delay")}}, {{cssxref("animation-direction")}}, {{cssxref("animation-duration")}}, {{cssxref("animation-fill-mode")}}, {{cssxref("animation-iteration-count")}}, {{cssxref("animation-name")}}, {{cssxref("animation-play-state")}}, {{cssxref("animation-timing-function")}}, {{cssxref("@keyframes")}}.</li>
-</ul>