使用labels元素创建开关

时间:2017-08-15 20:09:49

标签: html css button switch-statement

我想创建这样的开关,我只能从两个中选择一个选项 enter image description here

enter image description here

我可以做到这一点,但无法弄清楚如何叠加它们。

 <button>Курьер</button><button>Самовывоз</button>

CSS

  button{
                margin-top: 15px; 
                width: 50%;
                height: 25px;
                border-radius: 20px;
                border: none;
                background:
                linear-gradient(to right, #2BD563, #0183D3) no-repeat; 
                color:#fff;
                .reg;
                text-transform: uppercase;
    }

任何可以提供帮助的人?

提前感谢!

2 个答案:

答案 0 :(得分:1)

利用div, 有一个主容器div,里面有一个div用于颜色条,还有2个div用于文本:

let pos = 0;
document.getElementById("container").onclick = function() {
  if (pos == 0)
    pos = 100;
  else
    pos = 0;
  document.getElementById("colour").style.left = pos + "px";
}
#container {
  position: absolute;
  height: 30px;
  width: 200px;
  background: grey;
  border-radius: 15px;
}

#colour {
  position: absolute;
  height: 30px;
  width: 100px;
  left: 0px;
  background: green;
  border-radius: 15px;
  transition: left 0.2s;
}

#text1 {
  position: absolute;
  height: 30px;
  width: 100px;
  left: 0px;
  text-align: center;
}

#text2 {
  position: absolute;
  height: 30px;
  width: 100px;
  right: 0px;
  text-align: center;
}
<div id="container">
  <div id="colour"></div>
  <div id="text1">hello</div>
  <div id="text2">goodbye</div>
</div>

通过控制颜色条的“左”属性,你可以为它设置动画,我加入了一些快速的JS来向你展示如何做到这一点。

答案 1 :(得分:1)

您可以使用一个checkbox在按钮之间切换。要将第一个按钮放在第二个按钮上,您可以在第二个按钮上使用否定z-index

.field {
  position: relative;
  display: inline-block;
  padding: 2px;
  margin: 0;
}

#check {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
}
button {
  background: white;
  border: 1px solid blue;
  border-radius: 40px;
  padding: 3px 35px;
  transition: all 0.3s ease-in;
}
#check:checked ~ button:last-of-type,
#check ~ button:first-of-type{
  background: blue;
  color: white;
}
#check:checked ~ button:first-of-type {
  background: white;
  color: black;
}
button:last-of-type {
  transform: translateX(-20px);
  z-index: -1;
}
<div class="field">
  <input type="checkbox" name="" id="check">
  <button>Курьер</button>
  <button>Самовывоз</button>
</div>