--- id: bad87fee1348bd9aecb08826 title: Usar o jQuery para modificar a página inteira challengeType: 6 forumTopicId: 18361 required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' dashedName: use-jquery-to-modify-the-entire-page --- # --description-- Terminamos de brincar com nosso jQuery playground. Vamos quebrar tudo! O jQuery também pode tomar como alvo o elemento `body`. Aqui está como você faria para desaparecer todo o body:`$("body").addClass("animated fadeOut");` Mas vamos fazer algo mais dramático. Adicione as classes `animated` e `hinge` ao seu elemento `body`. # --hints-- Você deve adicionar as classes `animated` e `hinge` ao seu elemento `body`. ```js assert($('body').hasClass('animated') && $('body').hasClass('hinge')); ``` # --seed-- ## --seed-contents-- ```html

jQuery Playground

#left-well

#right-well

``` # --solutions-- ```html

jQuery Playground

#left-well

#right-well

```