728x90
๐ ํ๊ณ ์ ํ ๊ฒ ?
- ํด๋ฆญ ํ๋ฉด, "์ฒ์ฒํ ๋ํ๋๊ธฐ" ํจ๊ณผ๋ฅผ ์ฃผ๊ณ ์ถ์์..
- ์๊ฐ๋ณด๋ค ์ด๋ ต๋ค.. ใ
๐ ์ โ ๋ฅผ ํด๋ฆญํ๋ฉด ๋ด์ฉ์ด "์ฒ์ฒํ ๋ํ๋๋ค"
๐ ๋ค์ โ ๋ฅผ ํด๋ฆญํ๋ฉด ๋ด์ฉ์ด "์ฒ์ฒํ ์ฌ๋ผ์ง๋ค"
// JS
$(".ico_btn_board").click(function(){
$(".info_txt").removeClass("hidden_info");
$(".info_txt").toggleClass("appear_info disappear_info");
});
<!-- html -->
<a class="ico_btn_board" title="์ ๋ณด" style="margin-right: 14px;">์ ๋ณด</a>
<div class="info_txt hidden_info disappear_info" style="color:blue;margin-right:10px; margin-top:6px;">๋ด์ฉ ํ์</div>
<!-- css -->
.hidden_info {
display: none;
opacity: 0;
}
.appear_info {
animation: fade-in 0.25s;
animation-fill-mode: forwards;
display: inline-block;
}
.disappear_info {
animation: fade-out 0.25s;
animation-fill-mode: forwards;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
์ถ์ฒ :
https://lasdri.tistory.com/1043
https://ssimplay.tistory.com/565
https://ssimplay.tistory.com/565
๊ฐ๋ฐ ๊ณต๋ถ๋ฅผ ์ํ ๋ธ๋ก๊ทธ ์ ๋๋ค.
์ค๋ฅ๊ฐ ์๋ค๋ฉด ๋๊ธ๋ก ์๋ ค์ฃผ์ธ์!
๊ฐ์ฌํฉ๋๋ค.

728x90
'front > HTML, CSS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[CSS] ์ผ,์์๋ง ๋ค๋ฅธ ์๊น :: td:nth-child(7n) (0) | 2023.12.19 |
---|---|
[jstl] ์์ ์ซ์ ๋ถ์ด๊ธฐ (0) | 2023.12.05 |
[jstl] fn:length(Object item) (0) | 2023.05.08 |
[HTML] textarea :: (input type="text"์๋ ๋ค๋ฆ!) (0) | 2023.03.22 |
[CSS] hover ์ ๋งํ์ ํจ๊ณผ (0) | 2023.02.07 |