Skip to content

Commit ac8972f

Browse files
committed
Add spanish videos
1 parent af7fc7c commit ac8972f

File tree

11 files changed

+42
-2
lines changed

11 files changed

+42
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ Clone the repository in your local environment and follow the steps below:
4646
1) Make sure you have [LearnPack](https://github.com/learnpack/learnpack-cli), `node.js` version v14+, and jest v27 installed. This is the command to install the learnpack-cli and jest:
4747

4848
```bash
49-
$ npm i learnpack jest@27.0.6 -g
49+
$ npm i learnpack jest@29.7.0 jest-environment-jsdom@29.7.0 -g
5050
```
5151

5252
2) Clone or download this repository. Once you finish downloading, you will find a new folder with a subdirectory "exercises" that contains all the exercises within.
5353

5454
3) Install the LearnPack plugin to test and compile vanillajs:
5555

5656
```bash
57-
$ learnpack plugins:install learnpack-dom
57+
$ learnpack plugins:install @learnpack/dom
5858
```
5959

6060
4) Start the tutorial/exercises by running the following command from the root of the project:

exercises/00-introduction/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
intro: "https://www.youtube.com/watch?v=TbciSCu2kFQ"
3+
---
4+
15
# ¡Bienvenido a Eventos de JavaScript!
26

37
En este tutorial estaremos viendo los eventos de JavaScript:

exercises/01-alert-on-click/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=5L0_li8L16E"
3+
---
4+
15
# `01` Alert onclick
26

37
Puedes establecer funciones de Event Listener para manejar cualquier tipo de eventos ¡La lista de eventos posibles es inmensa! Click, Double Click, Mouseover, Load, Print, etc...

exercises/02-on-click-Hello-World/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=fFNighEUZuE"
3+
---
4+
15
# `02` onclick Hello World
26

37
## 📝 Instrucciones:

exercises/03-sum-values/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=qoax-ggb740"
3+
---
4+
15
# `03` Sum Values
26

37
## 📝 Instrucciones:

exercises/04-hide-on-click/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=_bjCwo4ptBw"
3+
---
4+
15
# `04` Hide onclick
26

37
## 📝 Instrucciones:

exercises/05-the-load-event/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=1P3i4ea4WfI"
3+
---
4+
15
# `05` The load Event
26

37
Es una muy buena práctica esperar a que el navegador termine de cargar la página antes de iniciar el flujo de tu sitio web/aplicación, para hacerlo, usamos el evento LOAD.

exercises/06-add-listener-with-js/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=aIZsIz09GcY"
3+
---
4+
15
# `06` Add Listener With JS
26

37
A veces debemos añadir listener de eventos DURANTE EL TIEMPO DE EJECUCIÓN.

exercises/07-count-on-click/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=AtGZsioWZ14"
3+
---
4+
15
# `07` Count onclick
26

37
Si tienes **variables globales**, puedes cambiar su valor durante el tiempo de ejecución usando los handlers de eventos. Por ejemplo, este código incrementa el valor de la variable `counter` cada vez que el usuario hace clic en el botón **Increase**.

exercises/07.1-change-turn-on-click/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=XUGMHH4RaOY"
3+
---
4+
15
# `07.1` Change Turn on Click
26

37
Digamos que quieres crear una herramienta para cambiar de turno entre dos jugadores: Mario y Juan.

0 commit comments

Comments
 (0)