jQuery๋ฅผ ์ด์ฉํด ์ ๋๋ฉ์ด์ ํจ๊ณผ ์ถ๊ฐํ๊ธฐ jQuery์๋ ๋ค์ํ ์ ๋๋ฉ์ด์ ํจ๊ณผ๋ฅผ ์ ๊ณตํ๋ค. https://www.w3schools.com/jquery/jquery_ref_effects.asp ์ ์ฌ์ดํธ์์ ๋ค์ํ ์ข ๋ฅ์ Effect Method๋ฅผ ํ์ธํ ์ ์๋ค. Effect Method๋ ๊ฐ๋จํ๊ฒ selector์ ์ ์ฉํ ์ ์๋ค. $(selector).effectMethod() ์๋ฅผ ๋ค์ด h1์์๋ฅผ ํ๋ฉด์์ ์ฌ๋ผ์ง๊ฒ ํ๊ณ ์ถ๋ค๋ฉด $("h1").hide(); ๋ผ๊ณ ์์ฑํ๋ฉด ๋๋ค. Effect Methods(์ ๋๋ฉ์ด์ ํจ๊ณผ ์ค๋ช ) ๊ฐ๋จํ ์ค๋ช ์ ์ํด h1์์์ ์ ๋๋ฉ์ด์ ์ ์ ์ฉํ๋ค๊ณ ๊ฐ์ ํ๋ค. $("h1").animate() // h1์ด ์ค์ ํ ์ ๋๋ฉ์ด์ ์ผ๋ก ์คํ๋จ // ex) $("h1").an..