chore(i18n,curriculum): processed translations (#42504)

This commit is contained in:
camperbot
2021-06-15 23:22:09 +09:00
committed by GitHub
parent e9c8d12703
commit 978ce8b512
11 changed files with 139 additions and 27 deletions

View File

@@ -1,6 +1,6 @@
---
id: bad87fee1348bd9aed608826
title: Use appendTo to Move Elements with jQuery
title: Usa appendTo para mover elementos con jQuery
challengeType: 6
forumTopicId: 18340
dashedName: use-appendto-to-move-elements-with-jquery
@@ -8,31 +8,33 @@ dashedName: use-appendto-to-move-elements-with-jquery
# --description--
Now let's try moving elements from one `div` to another.
Ahora intentemos mover elementos de un `div` a otro.
jQuery has a function called `appendTo()` that allows you to select HTML elements and append them to another element.
jQuery tiene una función llamada `appendTo()` que te permite seleccionar elementos HTML y añadirlos a otro elemento.
For example, if we wanted to move `target4` from our right well to our left well, we would use:
Por ejemplo, si quisiéramos mover `target4` desde nuestro "right well" a nuestro "left well", usaríamos:
`$("#target4").appendTo("#left-well");`
```js
$("#target4").appendTo("#left-well");
```
Move your `target2` element from your `left-well` to your `right-well`.
Mueve tu elemento `target2` desde tu `left-well` a tu `right-well`.
# --hints--
Your `target2` element should not be inside your `left-well`.
Tu elemento `target2` debe estar dentro de `left-well`.
```js
assert($('#left-well').children('#target2').length === 0);
```
Your `target2` element should be inside your `right-well`.
Tu elemento `target2` debe estar dentro de `right-well`.
```js
assert($('#right-well').children('#target2').length > 0);
```
You should only use jQuery to move these elements.
Sólo debes usar jQuery para mover estos elementos.
```js
assert(!code.match(/class.*animated/g));

View File

@@ -1,6 +1,6 @@
---
id: bad87fee1348bd9aecb08826
title: Use jQuery to Modify the Entire Page
title: Usa jQuery para modificar la página completa
challengeType: 6
forumTopicId: 18361
required:
@@ -11,17 +11,17 @@ dashedName: use-jquery-to-modify-the-entire-page
# --description--
We're done playing with our jQuery playground. Let's tear it down!
Hemos terminado de jugar con nuestra área de juego de jQuery. ¡Vamos a derribarlo!
jQuery can target the `body` element as well.
jQuery también puede seleccionar al elemento `body`.
Here's how we would make the entire body fade out: `$("body").addClass("animated fadeOut");`
Así es como haríamos que el cuerpo entero se desvaneciera: `$("body").addClass("animated fadeOut");`
But let's do something more dramatic. Add the classes `animated` and `hinge` to your `body` element.
Pero hagamos algo más dramático. Añade las clases `animated` y `hinge` a tu elemento `body`.
# --hints--
You should add the classes `animated` and `hinge` to your `body` element.
Debes añadir las clases `animated` y `hinge` a tu elemento `body`.
```js
assert($('body').hasClass('animated') && $('body').hasClass('hinge'));