--- 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: Использование jQuery для изменения всей страницы --- ## Description
Мы закончили играть с нашей игровой площадкой jQuery. Давайте разорвём его! jQuery может также нацеливаться на элемент body . Вот как мы можем заставить все тело исчезать: $("body").addClass("animated fadeOut"); Но давайте сделаем что-то более драматичное. Добавьте animated классы и hinge к элементу вашего body .
## Instructions
## Tests
```yml tests: - text: Добавьте animated классы и hinge к элементу вашего 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 ```