切换开关滑块时显示不同的div元素组件

3
我希望有一个切换开关,如果向左滑动,会弹出一个div内容组件,如果向右滑动,则会弹出不同的div内容。我该如何操作? HTML内容:
<form>
    <label class="switch">
        <input type="checkbox" checked="true" />
        <div class="slider round"></div>
    </label>
</form>

<div id ="menu1">
    Menu 1 content
</div>
<div id ="menu2">
    Menu 2 content
</div>

CSS内容
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.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);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

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

您可以看到,我希望如果切换向右滑动,id="menu1" 的div内容将被显示,而向左滑动则会显示id="menu2"的不同div内容。我想要一个切换开关,如果向左滑动,则弹出一个div内容组件,向右滑动则弹出不同的div内容。我该如何操作?

2个回答

2

这应该可以实现,但你需要使用jQuery。基本上,我们使用CSS将#menu2隐藏为默认的display:none;,然后使用JS对每个菜单使用.show.hide。如果您有问题,请告诉我。

$(function() {
  $("#toggle").click(function() {
    if ($(this).is(":checked")) {
      $("#menu1").show();
      $("#menu2").hide();
    } else {
      $("#menu1").hide();
      $("#menu2").show();
    }
  });
});
/* The switch - the box around the slider */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}


/* Hide default HTML checkbox */

.switch input {
  display: none;
}


/* The slider */

.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);
}


/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

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

#menu2 {
display:none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
  <label class="switch">
        <input type="checkbox" id="toggle" checked="true" />
        <div class="slider round"></div>
    </label>
</form>

<div id="menu1">
  Menu 1 content
</div>
<div id="menu2">
  Menu 2 content
</div>


0

您可以使用JavaScript来实现所需的功能。

首先,为了唯一标识您的复选框,请为其定义一个id。请使用以下HTML替换您的代码。我已经为复选框添加了id="checkbox1"

<form>
  <label class="switch">
    <input type="checkbox" id="checkbox1" checked="true" >
    <div class="slider round"></div>
  </label>
</form>

<div id ="menu1">
  Menu 1 conetnt
</div>
<div id ="menu2">
  MEnu 2 content
</div>

接下来,您需要添加以下的JavaScript代码。由于您的复选框默认为checked,因此menu2将最初被隐藏。下面的代码最初隐藏menu2,然后每当复选框的值更改时,在menu1menu2之间切换。
var checkbox1 = document.getElementById('checkbox1');
var menu1 = document.getElementById('menu1');
var menu2 = document.getElementById('menu2');

menu2.style.display = 'none';

checkbox1.onchange = function () {
  if (checkbox1.checked) {
    menu1.style.display = 'block';
    menu2.style.display = 'none';
  } else {
    menu2.style.display = 'block';
    menu1.style.display = 'none';

  }
};

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接