본문 바로가기
프로그래밍/CSS

CSS 아이폰 스위치 버튼(체크박스)

by 꾸션 2022. 7. 10.

CSS를 이용해서 아이폰에서 사용되는 스위치 버튼을 구현하는 방법입니다.

 

 

클릭해서 확인해 볼 수 있습니다.

 

HTML 소스

<!-- 스위치버튼 -->
<label class="switch">
  <input type="checkbox">
  <span class="slider"></span>
</label>

<!-- 둥근스위치버튼 -->
<label class="switch">
  <input type="checkbox">
  <span class="slider round"></span>
</label>

 

CSS 소스

/* 슬라이더 주변 상자 */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* HTML 기본 체크박스 숨기기 */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* 슬라이더 효과 */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* 둥근스위치버튼 스타일 및 효과 */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

 

반응형

댓글