--- id: bad87fee1348bd9aecb08826 title: Usare jQuery per modificare l'intera pagina 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-- Abbiamo finito di giocare con il nostro parco giochi jQuery. Demoliamolo! jQuery può anche selezionare l'elemento `body`. Ecco come far svanire tutto il corpo: `$("body").addClass("animated fadeOut");` Ma facciamo qualcosa di più drammatico. Aggiungi le classi `animated` e `hinge` al tuo elemento `body`. # --hints-- Dovresti aggiungere le classi `animated` e `hinge` al tuo elemento `body`. ```js assert($('body').hasClass('animated') && $('body').hasClass('hinge')); ``` # --seed-- ## --seed-contents-- ```html