--- id: bad87fee1348bd9aecb08826 title: 使用 jQuery 修改整個頁面 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-- 目前,已經完成了 jQuery playground。 把它移除吧。 jQuery 也能選取 `body` 標籤。 這是使整個 body 淡出的代碼:`$("body").addClass("animated fadeOut");` 來做一些更好玩的事。 給 `body` 標籤添加 `animated` 和 `hinge` class。 # --hints-- 應該給 `body` 標籤添加 `animated` 和 `hinge` class。 ```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

```