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