Skip to content

Commit

Permalink
Convert web/api/element to markdown for Spanish (es) (#9301)
Browse files Browse the repository at this point in the history
* feat: convert es/web/api/element to markdown

* Replace "Síntasix" with "Síntaxis"

* feat: improve es/web/html content

* convert table to definition list
* apply markdownlint fixes
* use standard Specifications and Compat blocks
* use approved translation for "See now" block
* use HTTPS links where for w3c website and whatwg website
* don't use bold for inline code blocks
* add missing code block languages

* Apply suggestions from code review

Co-authored-by: Craig Blaszczyk <[email protected]>
Co-authored-by: Alexander <[email protected]>
  • Loading branch information
3 people committed Oct 17, 2022
1 parent 684f425 commit ed39dbc
Show file tree
Hide file tree
Showing 118 changed files with 4,067 additions and 5,549 deletions.
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

0 comments on commit ed39dbc

Please sign in to comment.