--- id: bad87fee1348bd9aecb08826 title: Use jQuery to Modify the Entire Page required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' challengeType: 6 videoUrl: '' localeTitle: Use jQuery para modificar a página inteira --- ## Description
Acabamos de brincar com nosso playground da jQuery. Vamos derrubá-lo! O jQuery também pode segmentar o elemento body . Veja como faríamos todo o corpo desaparecer: $("body").addClass("animated fadeOut"); Mas vamos fazer algo mais dramático. Adicione as classes animated e hinge ao elemento do body .
## Instructions
## Tests
```yml tests: - text: Adicione as classes animated e hinge ao elemento do body . testString: 'assert($("body").hasClass("animated") && $("body").hasClass("hinge"), "Add the classes animated and hinge to your body element.");' ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

```
## Solution
```js // solution required ```