Skip to content
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

Convert web/api/element to markdown for Spanish (es) #9301

Merged
merged 3 commits into from
Oct 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions files/es/web/api/element/animate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ slug: Web/API/Element/animate
translation_of: Web/API/Element/animate
browser-compat: api.Element.animate
---
{{APIRef('Web Animations')}}
{{APIRef}}

El método **`animate()`** de la interfaz {{domxref("Element")}} es un método abreviado el cual crea un nuevo {{domxref("Animation")}}, aplicado al elemento, luego reproduce la animación. Devuelve la instancia creada de un objeto {{domxref("Animation")}}.
El método `animate()` de la interfaz {{domxref("Element")}} es un método abreviado el cual crea un nuevo {{domxref("Animation")}}, aplicado al elemento, luego reproduce la animación. Devuelve la instancia creada de un objeto {{domxref("Animation")}}.

> **Nota:** Los elementos pueden tener multiples animaciones aplicadas a ellos. Puedes obtener una
> lista de las animaciones que afectan a un elemento llamando a {{domxref("Element.getAnimations()")}}.
Expand Down
82 changes: 0 additions & 82 deletions files/es/web/api/element/animationend_event/index.html

This file was deleted.

53 changes: 53 additions & 0 deletions files/es/web/api/element/animationend_event/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
title: animationend
slug: Web/API/Element/animationend_event
translation_of: Web/API/HTMLElement/animationend_event
original_slug: Web/API/HTMLElement/animationend_event
---
{{ APIRef }}

El evento `animationend` es lanzado cuando una animación CSS se ha completado.

## Información General

- Especificación
- : [CSS Animations](https://www.w3.org/TR/css3-animations/#animation-events)
- Interface
- : AnimationEvent
- Bubbles
- : Si
- Cancelable
- : No
- Target
- : Document, Element
- Acción por defecto
- : None

## Propiedades

| Propiedad | Tipo | Descripción |
| ---------------------------------------- | ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `target` {{ReadOnlyInline}} | {{domxref("EventTarget")}} | The event target (the topmost target in the DOM tree). |
| `type` {{ReadOnlyInline}} | {{domxref("DOMString")}} | The type of event. |
| `bubbles` {{ReadOnlyInline}} | `boolean` | Does the event normally bubble? |
| `cancelable` {{ReadOnlyInline}} | `boolean` | Is it possible to cancel the event? |
| `animationName` {{ReadOnlyInline}} | {{domxref("DOMString")}} | The name of the CSS property associated with the transition. |
| `elapsedTime` {{ReadOnlyInline}} | Float | The amount of time the animation has been running, in seconds, when this event fired, excluding any time the animation was paused. For an "animationstart" event, the elapsedTime is zero unless there was a negative value for `animation-delay`, in which case the event will be fired with an elapsedTime of (-1 \* delay). |

## Eventos relacionados

- {{Event("animationstart")}}
- {{Event("animationend")}}
- {{Event("animationiteration")}}

## Especificaciones

{{Specifications}}

## Compatibilidad con navegadores

{{Compat}}

## Véase también

- [Using CSS Animations](/es/docs/CSS/Using_CSS_animations)
158 changes: 0 additions & 158 deletions files/es/web/api/element/attachshadow/index.html

This file was deleted.

Loading