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