Simple toggle switch using HTML and CSS without Javascript



Toggle switch is follow style switch on phone. I using checkbox in background process. When checkbox checked, toggle switch is change color to active and checkbox unchecked it will change to back style.

HTML


<html lang="en">
<head>
    <title>Switch</title>
    <link href="css/style.css" rel="stylesheet"></link>
</head>
<body>
    <label class="switch">
      <input type="checkbox" />
      <span class="slider round"></span>
    </label>
</body>
</html>

CSS


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {display:none;}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
DEMO : VIDEO ON YOUTUBE

Comments