DAY-45 jquery event ํ์ฉ
๐ jquery event ํ์ฉ
2022-05-03
โ ์์ ์ ๋ฃ๊ณ , ๊ฐ์ธ์ด ๊ณต๋ถํ ๋ด์ฉ์ ์ ์ ๊ฒ ์ด๊ธฐ์ ์ค๋ฅ๊ฐ ๋ง์ ์๋ ์์
๐ ์คํฌ๋กค(ํ๋ฉด) ์ด๋
See the Pen Untitled by kimyeong96 (@kimyeong96) on CodePen.
- ํ์ฌ ์คํฌ๋กค์ ์์น๋ฅผ ์๋ ค๋ฉด (ํน์ ์์).prop(โscrollHeightโ)๋ฅผ ์ค์ผํ๋ค
- ์คํฌ๋กค์ ์์น๋ฅผ ๋ณํ์ํค๋ ค๋ฉด scrollTop()์ด๋ผ๋ ๋ฉ์๋๋ฅผ ์ฌ์ฉํด์ผ ํ๋ค
- ํ๋ฉด์ด ์๋ก ์ฌ๋ผ๊ฐ๊ธฐ ์ํด์๋ scrollTop()์ด 0์ด์ด์ผ ํ๊ณ ํ๋ฉด์ด ์๋๋ก ๊ฐ๊ธฐ ์ํด์ scrollTop()์ด ํ์ฌ ์คํฌ๋กค์ ๋์ด์ธ (ํน์ ์์).prop(โscrollHeightโ)์ด์ด์ผ ํ๋ค
๐ ์ํฐํค ๊ฐ์ง
- keyCode๊ฐ 13์ด์ด์ผ ํ๋ค
- ํด๋น ๊ธ์์ keyCode๋ฅผ ์๋ ๋ฐฉ๋ฒ
console.log(e.keyCode);
๐ jquery effect
- slide down๊ณผ slide up์ ์ฌ์ฉํด์ผ ์์ง์ผ๋ก ๋ณ๊ฒฝ๋๋ค
-
hide์ show๋ฅผ ์ฌ์ฉํ๋ฉด ๊ตฌ์์ผ๋ก ๋ณ๊ฒฝ
- animationํจ์๋ฅผ ์ด์ฉํ ์ ์๋ค
slide down / slide up ์์
1๏ธโฃ
See the Pen Untitled by kimyeong96 (@kimyeong96) on CodePen.
- slideDown() -> display none ์์ฑ์ display block ์ผ๋ก ๋ณ๊ฒฝ
- slideUp() -> display none์ผ๋ก ๋ณ๊ฒฝ
2๏ธโฃ
See the Pen Untitled by kimyeong96 (@kimyeong96) on CodePen.
hide / show / toggle ์์
See the Pen Untitled by kimyeong96 (@kimyeong96) on CodePen.
Leave a comment