တည်ဆောက်ပုံ: ပြောင်းလဲစား

စီးပွားလုပ်ငန်းကို တည်ဆောက်ပြီး အသုံးပြုကြည်းပေါင်းစားသည်။

亲自试一试

အင်တာဝန် ပြောင်းလဲသည့် အချက်အလက် ကို ဖွဲ့စည်းတာမည်မျှ?

ပထမပိုင်း - 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%;
}

亲自试一试