javascript - Toggle switch slider时显示不同的div元素组件

标签 javascript jquery html css

我想要一个切换开关,如果向左滑动会弹出一个 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%;
}

如您所见,我希望切换器向右滑动 div 的内容 id="menu1"将显示在幻灯片左侧的 div 内容 id="menu2"被显示。我想要一个切换开关,如果向左滑动会弹出一个 div 内容组件,向右滑动会弹出一个不同的 div 内容。我该如何继续?

最佳答案

这应该可以,但您需要 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>

关于javascript - Toggle switch slider时显示不同的div元素组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47986285/

相关文章:

javascript - 分离并重新连接鼠标滚轮事件监听器不重置滚动惯性

javascript - 按值降序对 json 进行排序

jQuery Slide Down 定位

html - 为什么即使在指定宽度后内容也会在 div 中溢出

javascript - 检索图像中选定的单选按钮值

javascript - Express Gateway 启用日志

javascript - 异步 - 等待 JavaScript : unable to catch error details from an Error object

jquery - jstree 3 - dnd - 限制删除到某个节点

html - Z-Indexed 容器不可点击

javascript - 哪个逻辑运算符优先