Skip to content

Commit 22c1177

Browse files
authored
Merge pull request #110 from tambaqui/animation-css-animations
CSS Animations
2 parents 030f56f + 2aedc97 commit 22c1177

File tree

11 files changed

+155
-155
lines changed

11 files changed

+155
-155
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11

2-
CSS to animate both `width` and `height`:
2+
CSS para animar tanto `width` como `height`:
33
```css
4-
/* original class */
4+
/* clase original */
55

66
#flyjet {
77
transition: all 3s;
88
}
99

10-
/* JS adds .growing */
10+
/* JS añade .growing */
1111
#flyjet.growing {
1212
width: 400px;
1313
height: 240px;
1414
}
1515
```
1616

17-
Please note that `transitionend` triggers two times -- once for every property. So if we don't perform an additional check then the message would show up 2 times.
17+
Ten en cuenta que `transitionend` se dispara dos veces, una para cada propiedad. Entonces, si no realizamos una verificación adicional, el mensaje aparecería 2 veces.

7-animation/2-css-animations/1-animate-logo-css/task.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ importance: 5
22

33
---
44

5-
# Animate a plane (CSS)
5+
# Animar un avión (CSS)
66

7-
Show the animation like on the picture below (click the plane):
7+
Muestra la animación como en la imagen a continuación (haz clic en el avión):
88

99
[iframe src="solution" height=300]
1010

11-
- The picture grows on click from `40x24px` to `400x240px` (10 times larger).
12-
- The animation takes 3 seconds.
13-
- At the end output: "Done!".
14-
- During the animation process, there may be more clicks on the plane. They shouldn't "break" anything.
11+
- La imagen crece al hacer clic de `40x24px` a `400x240px` (10 veces más grande).
12+
- La animación dura 3 segundos.
13+
- Al final muestra: "¡Listo!".
14+
- Durante el proceso de animación, puede haber más clics en el avión. No deberían "romper" nada.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
We need to choose the right Bezier curve for that animation. It should have `y>1` somewhere for the plane to "jump out".
1+
Necesitamos elegir la curva de Bézier correcta para esa animación. Debe tener `y>1` en algún punto para que el avión "salte".
22

3-
For instance, we can take both control points with `y>1`, like: `cubic-bezier(0.25, 1.5, 0.75, 1.5)`.
3+
Por ejemplo, podemos tomar ambos puntos de control con `y>1`, como: `cubic-bezier(0.25, 1.5, 0.75, 1.5)`.
44

5-
The graph:
5+
La gráfica:
66

77
![](bezier-up.svg)

7-animation/2-css-animations/2-animate-logo-bezier-css/task.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ importance: 5
22

33
---
44

5-
# Animate the flying plane (CSS)
5+
# Animar el avión volando (CSS)
66

7-
Modify the solution of the previous task <info:task/animate-logo-css> to make the plane grow more than it's original size 400x240px (jump out), and then return to that size.
7+
Modifica la solución de la tarea anterior <info:task/animate-logo-css> para hacer que el avión crezca más que su tamaño original 400x240px (saltar fuera), y luego vuelva a ese tamaño.
88

9-
Here's how it should look (click on the plane):
9+
Así es como debería verse (haz clic en el avión):
1010

1111
[iframe src="solution" height=350]
1212

13-
Take the solution of the previous task as the source.
13+
Toma la solución de la tarea anterior como punto de partida.

7-animation/2-css-animations/3-animate-circle/task.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ importance: 5
22

33
---
44

5-
# Animated circle
5+
# Círculo animado
66

7-
Create a function `showCircle(cx, cy, radius)` that shows an animated growing circle.
7+
Crea una función `showCircle(cx, cy, radius)` que muestre un círculo animado creciendo.
88

9-
- `cx,cy` are window-relative coordinates of the center of the circle,
10-
- `radius` is the radius of the circle.
9+
- `cx,cy` son coordenadas relativas a la ventana del centro del círculo,
10+
- `radius` es el radio del círculo.
1111

12-
Click the button below to see how it should look like:
12+
Haz clic en el botón de abajo para ver cómo debería verse:
1313

1414
[iframe src="solution" height=260]
1515

16-
The source document has an example of a circle with right styles, so the task is precisely to do the animation right.
16+
El documento fuente tiene un ejemplo de un círculo con estilos correctos, por lo que la tarea es precisamente hacer la animación correctamente.

0 commit comments

Comments
 (0)