인프런 커뮤니티 질문&답변

yoonk님의 프로필 이미지
yoonk

작성한 질문수

HTML+CSS+JS 포트폴리오 실전 퍼블리싱(시즌1)

24.Pure CSS 콘텐츠 슬라이더 프로토타입 01 (풀스크린 탭 콘텐츠 슬라이더 프로토타입)

안녕하세요.! 세로로 한번 해보고 싶어서 해봤는데 이렇게 하면 될까요?

해결된 질문

작성

·

139

1

먼저, 강의 잘 보고 있는 수강생입니다.! 감사합니다.! 

처음 질문 남겨보는데,

1) 가로로 만들어보고 세로로 한 번 만들어보고 싶어서 해봤는데 이렇게 하면 될까요? 

2) 그리고, 가로와 마찬가지로 세로에서 ①height: 100vh; width: 300%; / height: 100vh; width: 33.3333%; 도 

②height: 300%; width: 100vw; / height: 33.3333%; width: 100vw; 로 줘도 되는데 세로로 만들 경우 형식적으로는 ②으로 해줘야 하는 건가요?

-> 둘 다, .tabs { height: 100vh; } 를 넣어주기만 하면 되더라구요.! 

.tab-inner {
    /* border: 1px solid red; */
}
input[name=tabmenu] {
    displaynone
}
.tabs {
    positionrelative;
    height100vh;
    overflowhidden;
}
.items {
    height100vh;
    width300%;
    positionabsolute;
    top0;
    left0;
    transition0.5s
}
.items div {
    height100vh;
    width33.3333%;
    box-sizingborder-box;
    displayflex
    justify-contentcenter;
    align-itemscenter
}
.items div:nth-child(1) {
    background-colordodgerblue;
}
.items div:nth-child(2) {
    background-colorpurple;
}
.items div:nth-child(3) {
    background-colorrgb(25513130);
}
.items div h1 {
    font-size60px;
    color#fff;
}
.btn {
    positionabsolute;
    top50%;
    left20px;
    transformtranslate(50%,-50%)
}
.btn label {
    displayblock;
    width5px
    height50px
    background-color#fff;
    margin-bottom10px;
    cursorpointer;
}
input[id=tab1]:checked ~ .tabs .items {
    top0;
}
input[id=tab2]:checked ~ .tabs .items {
    top-100%;
}
input[id=tab3]:checked ~ .tabs .items {
    top-200%;
}

그럼, 선생님께 질문을 살포시...남겨두고 다음 강의 계속 들으러 갈게요:) 화이팅!

답변 2

1

주신 코드로 테스트 해봤는데 매우 나이쓰하게 잘 되는데요. 잘 만드셨어요~

yoonk님의 프로필 이미지
yoonk
질문자

감사합니다.! 오늘도 화이팅하겠습니다:) 히히 

0

html 코드도 올려주세요~

yoonk님의 프로필 이미지
yoonk
질문자

앗! 죄송합니다.! 

<body>
    <div class="tab-inner">
        <input type="radio" name="tabmenu" id="tab1" checked>
        <input type="radio" name="tabmenu" id="tab2">
        <input type="radio" name="tabmenu" id="tab3">
        <div class="tabs">
            <div class="items">
                <div><h1>Slide Content 01</h1></div>
                <div><h1>Slide Content 02</h1></div>
                <div><h1>Slide Content 03</h1></div>
            </div>
        </div>
        <div class="btn">
            <label for="tab1"></label>
            <label for="tab2"></label>
            <label for="tab3"></label>
        </div>
    </div>
</body>

아, 그리고 CSS에 .btn 세로 버튼 가운데 위치 시키는 게 한 거 맞..맞게 했나요..?ㅠㅠ 

yoonk님의 프로필 이미지
yoonk

작성한 질문수

질문하기