我想要一个切换开关,如果向左滑动一个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内容。如何继续?
答案 0 :(得分:1)
这应该这样做,但你需要jQuery。基本上,我们将#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>
答案 1 :(得分: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
,然后只要复选框值发生变化,就会在menu1
和menu2
之间切换。
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';
}
};