프로젝트로 배운 공부/팀프로젝트

자바스크립트로 캐러셀(슬라이드) 만들기 2 (scss)

콛 다이어리 2024. 7. 19. 21:17

/* 노말라이즈 */

* { 

     margin: 0;

     padding: 0;

     list-style:none;

     box-sizing: 0;

  }

 

/* 전체 슬라이드 */

.slide-div {

display: flex;

                     flex-direction: column;

                     align-items: center;

                     justify-content: center;

                     top: 50%;

                     background-image: url(./background_image.jpg);

                     background-size: cover;

                     background-repeat: no-repeat;

 

/* 슬라이드 */

.slideshow-container {

position: relative;

       margin: auto;

       width: 550px;

       height: 300px;

       border: 2.5px solid #ccc;

 

/* '<', '>' 모양 버튼 */

.prev,

.next {

      cursor: pointer;

      position: absolute;

      top: 50%;

      width: auto;

      margin-top: -49%;

     padding; 16px;

     color: #aaa;

     font-size: 4rem;

     border-radius: 0 3px 3px 0;

     user-select: none;

 

    &:hover {

           color: white;

     }

 }

 

/* 본문 */

.text {

      color: black;

      font-size: 15px;

      padding: 8px 12px;

      position: absolute;

      bottom: 58px;

      width: 100%;

      text-align: center;

      line-height: 65px;

      font-weight: bold;

      background: transparent;

  }  

 

/* 팀원 이름 */

.name {

        font-size: 35px;

        background: transparent;

  }

 

/* 팀원 관심사 */

.details {

     background: transparent;

 }

 

/* 숫자 텍스트 (1/5 ~) */

.numbertext {

        color: black

        font-size: 12px;

        padding: 8px 12px;

        position: absolute;

        top: 0;

        font-weight: bold;

        background: transparent;

  }

 

/* 동그라미 버튼 감싸는 div */

.btn-containter {

     background-color: transparent;

  }

 

/* 동그라미 버튼 */

.dot {

           cursor: pointer;

           height: 15px;

           width: 15px;

           margin 0 2px;

           color: black;

           border-radius: 50%;

           display: inline-block;

           border: 2px solid black;

 

/* 클릭된 동그라미 버튼 */

.active,

.dot: active {

     background-color: #aaa;

  }