728x90
๋ฐ์ํ
๐ก ์ค์ต ํฌ์ธํธ!
- ํญ ๋ง๋๋ ๋ถ๋ถ์ ๊ฐ์์์ ๊ธฐ๋ณธ HTML, CSS ๋ฅผ ์ ๊ณตํด์ฃผ์ด์ ๊ธฐ๋ฅ๋ง ๋ง๋ค๋ฉด ๋์๊ธฐ์ ํฌ๊ฒ ์ด๋ ต์ง๋ ์์๋ค.
- ๋ค๋ง Dark Mode ๋ฅผ ์ ๋๋ก ์ ์ฉํ๊ณ ์ถ์๋๋ฐ border-bottom ๋ถ๋ถ์ด ์ํ๋ ๋๋ก ๋์ค์ง ์์ ์ผ๋จ ๋ณด๋ฅํด๋์๋ค.
๐ HTML
<div class="container mt-5">
<ul class="list">
<li class="tab-button active">Products</li>
<li class="tab-button">Information</li>
<li class="tab-button">Shipping</li>
</ul>
<div class="tab-content show">
<p>์ํ์ค๋ช
์
๋๋ค. Product</p>
</div>
<div class="tab-content">
<p>์ํ์ ๋ณด์
๋๋ค. Info</p>
</div>
<div class="tab-content">
<p>๋ฐฐ์ก์ ๋ณด์
๋๋ค. Shipping</p>
</div>
</div>
๐ CSS
ul.list {
list-style-type: none;
margin: 0;
padding: 0;
border-bottom: 1px solid #ccc;
}
ul.list::after {
content: "";
display: block;
clear: both;
}
.tab-button {
display: block;
padding: 10px 20px 10px 20px;
float: left;
margin-bottom: -1px;
color: grey;
text-decoration: none;
cursor: pointer;
}
.active {
border-top: 2px solid gold;
border-right: 1px solid #ccc;
border-bottom: 1px solid white;
border-left: 1px solid #ccc;
color: black;
margin-top: -2px;
}
.tab-content {
display: none;
padding: 10px;
}
.show {
display: block;
}
๐ JavaScript
for (let i = 0; i < $('.tab-button').length; i++){
$('.tab-button').eq(i).on('click', function(){
$('.tab-button').removeClass('active');
$('.tab-content').removeClass('show');
$('.tab-button').eq(i).addClass('active');
$('.tab-content').eq(i).addClass('show');
})
}
- ํน์ ์์์ ํญ ๋ฒํผ์ ํด๋ฆญํ์ ๋, ํด๋น ํญ์ด ํ์ฑํ๋๋ฉด์ ๋ด์ฉ์ ๋ณด์ฌ์ฃผ๋ ๊ธฐ๋ฅ์ ๋ง๋ค์ด๋ณด์๋ค.
- ์ด ๋, ์ฝ๋๋ฅผ ์ ๋๋ก ์ง์ง ๋ชปํ๋ค๋ฉด ํ๋์ ํญ์ ํด๋ฆญํ๊ณ ๋ ํ ๋ค๋ฅธ ํญ์ ํด๋ฆญํ์ ๋ ํ์ฑํ๋๋ ํญ์ด ๋ฐ๋๋ ๊ฒ ์๋๋ผ ๊ทธ๋ฅ ํ์ฑํ๋ ํญ์ด ํ๋๊ฐ ์ถ๊ฐ๋๋ ๊ฒฝ์ฐ๊ฐ ๋ฐ์ํ๋ค.
- ์ด ๋ถ๋ถ์ ๊ทธ๋ฅ ํน์ ํญ์ ๋๋ ์ ๋ ๋ด๊ฐ ๋๋ฅธ ํญ์ด ํ์ฑํ๋๊ธฐ ์ ์ ๋ชจ๋ ํญ๋ค์ ๋นํ์ฑํ์์ผ๋๋ ๊ฒ์ผ๋ก ํด๊ฒฐํ ์ ์์๋ค.
- ๊ทธ๋ฆฌ๊ณ HTML ํ์ผ์์ ํญ์ ์ถ๊ฐํ๋ ๊ฒฝ์ฐ, JavaScript ํ์ผ์์ ํญ์ ๊ฐ์๋ฅผ ์ถ๊ฐํ์ง ์์๋ ๋๋๋ก ๋ฐ๋ณต๋ฌธ ๋ฐ length ๋ฅผ ํ์ฉํด ํ์ฅ์ฑ์ ๋์๋ค.
728x90
๋ฐ์ํ