--- 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 ```