-
Notifications
You must be signed in to change notification settings - Fork 8.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Converted web/api/animationevent/elapsedtime to MD #7230
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,39 @@ | ||||||||||||||||||
--- | ||||||||||||||||||
title: AnimationEvent.elapsedTime | ||||||||||||||||||
slug: Web/API/AnimationEvent/elapsedTime | ||||||||||||||||||
tags: | ||||||||||||||||||
- AnimationEvent | ||||||||||||||||||
- Animações Web | ||||||||||||||||||
- Apps | ||||||||||||||||||
- CSSOM | ||||||||||||||||||
- Experimental | ||||||||||||||||||
- Propriedade | ||||||||||||||||||
- Referencia | ||||||||||||||||||
translation_of: Web/API/AnimationEvent/elapsedTime | ||||||||||||||||||
--- | ||||||||||||||||||
|
||||||||||||||||||
{{SeeCompatTable}}{{ apiref("Web Animations API") }} | ||||||||||||||||||
|
||||||||||||||||||
Comment on lines
+14
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
## Sumário | ||||||||||||||||||
|
||||||||||||||||||
O **`AnimationEvent.elapsedTime`** é uma propriedade só de leitura com um ponto flutuante dando a quantidade de tempo que animação esteve rodando, em segundos, quando o evento termina, excluirá o tempo em que ela esteve em pausa. Para um evento `"animationstart" `, `elapsedTime` é `0.0` a não ser que tenha um valor negativo para {{cssxref("animation-delay")}}, nesse caso o evento irá terminar com `elapsedTime` contendo `(-1 * `_delay_`)`. | ||||||||||||||||||
|
||||||||||||||||||
## Síntaxe | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
|
||||||||||||||||||
time = AnimationEvent.elapsedTime | ||||||||||||||||||
|
||||||||||||||||||
## Especificações | ||||||||||||||||||
|
||||||||||||||||||
| Specification | Status | Comment | | ||||||||||||||||||
| ---------------------------------------------------------------------------------------------- | ----------------------------- | ------------------- | | ||||||||||||||||||
| {{ SpecName('CSS3 Animations', '#AnimationEvent-elapsedTime', 'AnimationEvent.elapsedTime') }} | {{ Spec2('CSS3 Animations')}} | Initial definition. | | ||||||||||||||||||
|
||||||||||||||||||
Comment on lines
+25
to
+30
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Utilizando a macro para gerar as especificações
Suggested change
|
||||||||||||||||||
## Compatibilidade com navegadores | ||||||||||||||||||
|
||||||||||||||||||
{{Compat}} | ||||||||||||||||||
|
||||||||||||||||||
## Veja também | ||||||||||||||||||
|
||||||||||||||||||
- [Usando animações CSS.](https://developer.mozilla.org/en-US/docs/CSS/Using_CSS_animations) | ||||||||||||||||||
- Animation-related CSS properties and at-rules: {{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")}}. | ||||||||||||||||||
- The {{domxref("AnimationEvent")}} interface it belongs to. | ||||||||||||||||||
Comment on lines
+37
to
+39
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Traduzindo algumas partes do trecho abaixo. OBS: A última linha não foi bem traduzida e mais "adaptada".
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adicionando atributos existentes na versão original