Winnie The Pooh Bear 사이트 만들기 슬라이드 유형

배움기록/CSS

사이트 만들기 슬라이드 유형

코딩은 처음이라 2023. 3. 15. 18:30

“ 지연되는 프로젝트에 인력을 더 투입하면 오히려 더 늦어진다. ”

- Frederick Philips Brooks
Mythical Man-Month 저자
728x90
반응형

사이트 만들기 슬라이드 유형

 

 

 

 

 

오늘은 사이트 만들기 했던 유형 중 

슬라이드 유형을 정리해보겠습니다

 

 

 

 

 

💜 슬라이드 유형

코드 보기 완성 화면

전과 동일하게 피그마로 먼저 작업해주고 코딩을 해줍니다.

 

 

 

 

 

/* reset */
* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #000;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
img {
    vertical-align: top;
    width: 100%;
}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}

.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.blind {
    position:absolute;
    clip:rect(0 0 0 0);
    width:1px;
    height:1px;
    margin:-1px;
    overflow:hidden;
}
/* common */
.container {
    width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    /* background-color: rgba(0,0,0,0.1); */
}
.nexon {
    font-family: 'NexonLv1Gothic';
    font-weight: 400;
}
.section.center {
    text-align: center;
}
.section {
    padding: 120px 0;
}
.section__h2 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1;
}
.section__desc {
    font-style: 22px;
    color: #666;
    margin-bottom: 70px;
    font-weight: 300;
    line-height: 1.5;
}

우선 전부터 계속 써왔던 기본 CSS설정해놓은 것을 불러와줍니다.

 

<body>
<section class="slider__wrap nexon">
    <h2 class="blind">메인 슬라이드 영역</h2>
    <div class="slider__inner">
        <div class="slider">
            <div class="slider__info container">
                <span class="small">event</span>
                <h3 class="title">커피와 함께하는 사이트</h3>
                <p class="desc">커피에 관심 있는 사람들이 모여 정보를 공유하고 소통할 수 있는 커뮤니티 사이트입니다. 커피 추천, 맛집 추천, 추출 방법 등의 정보를 얻을 수 있습니다.</p>
                <div class="btn">
                    <a href="#">자세히 보기</a>
                    <a href="#">상담 신청</a>
                </div>
            </div>
            <div class="silder__arrow">
                <a href="#"><span class="blind">이전 이미지</span></a>
                <a href="#"><span class="blind">다음 이미지</span></a>
            </div>
            <div class="silder__dot">
                <a href="#" class="dot active"><span class="blind">첫번째 이미지</span></a>
                <a href="#" class="dot"><span class="blind">두번째 이미지</span></a>
                <a href="#" class="dot"><span class="blind">세번째 이미지</span></a>
                <a href="#" class="play"><span class="blind">플레이</span></a>
                <a href="#" class="stop"><span class="blind">정지</span></a>
            </div>
        </div>
        <!-- <div class="slider"></div>
        <div class="slider"></div> -->
    </div>
</section>

그다음 body태그 안에 section태그를 만들어줍니다..

 

section태그안에 모든 태그를 다 넣어줍니다.

이름에 맞는 class를 설정해줍니다.

 

그 다음 class 이름에 맞는 CSS를 설정해줍니다.

/* slider__wrap */
.slider__inner .slider {
    height: 600px;
    background-image: url(../asset/img/sliderType01_01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

background-image: 를 사용해 이미지를 넣어줌

background-size:cover; 배경 이미지의 크기를 커버로 설정/ 이미지가 요소를 완전히 채워줌

background-repeat: 배경 요소가 반복되지 않도록 설정

background-position: 배경 이미지의 위치가 가운데로 설정

z-index 쌓임 순서 결정1로 설정해 맨 밑으로 가게 설정

.slider__inner .slider::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.slider__info {
    padding: 100px 0;
}
.slider__info .small {
    display: inline-block;
    padding: 1px 30px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.slider__info .title {
    font-size: 80px;
    color: #fff;
    margin-bottom: 40px;
    border-left: -5px;
    margin-left: -6px;
}
.slider__info .desc {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    width: 50%;
    word-break: keep-all;
}

 

position: absolute; 문서의 흐름에서 벗어나게 함/ 다른 요소들과 겹치지 않고 독립적이게 됨

text-transform: uppercase; 텍스트를 대문자로

word-break: keep-all; 줄바꿈을 하지 않고, 단어를 끝까지 한 줄에 표시

.slider__info .btn {
    margin-top: 100px;
}
.slider__info .btn a {
    width: 180px;
    background-color: #fff;
    font-size: 16px;
    display: inline-block;
    text-align: center;
    padding: 12px 0;
    margin-right: 4px;
}
.slider__info .btn a:last-child {
    background-color: #000;
    color: #fff;
}
.silder__arrow a {
    position: absolute;
    top: 50%;
    background-image: url(../asset/img/icon_main.svg);
    background-size: 500px;
    width: 30px;
    height: 56px;
    display: block;
    margin-top: -28px;
}
.silder__arrow a:first-child {
    left: 20px;
}
.silder__arrow a:last-child {
    right: 20px;
    background-position: -52px 0;
}
.silder__dot {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}
.silder__dot a {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url(../asset/img/icon_main.svg);
    background-size: 500px;
    margin: 0 3px;
}
.silder__dot a.dot {
    background-position: -101px -1px;
}
.silder__dot a.active {
    background-position: -121px -1px;
}
.silder__dot a.play {
    background-position: -141px -1px;
}
.silder__dot a.stop {
    background-position: -161px -1px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (min-device-pixel-ratio: 2),
    only screen and (min-resolution: 2dppx) {
        .slider__inner .slider {
        background-image: url(../asset/img/sliderType01_01@2x.jpg);
        }
    }

transform: translateX(-50%); 2D 변형 속성 중 하나, 해당 요소를 수평 방향으로 이동

@media를 사용해 디스플레이 해상도에 맞게 사진이 나오게 설정해줍니다.

반응형