(Effects 04) Module 6 Quiz

SoloLearn jQuery 번역


QUIZ

  • Fill in the blanks to hide all paragraphs upon clicking the div element.
    • div element를 클릭했을 때, 모든 p를 hide 해라.
$("div").click(function() {
   $("p").hide();
});


  • For how many seconds will the following animation group run?
    • 다음 애니메이션 그룹은 몇 초 동안 실행되는가?
$("p").animate({height: '10px'}, 1000);
$("p").animate({width: '10px'}, 1000);
$("p").animate({opacity: 0.5}, 3000);

5