gpt4 book ai didi

javascript - CSS:复选框输入技巧不起作用

转载 作者:行者123 更新时间:2023-11-30 12:43:08 25 4
gpt4 key购买 nike

考虑我的 HTML

<label for="checkbox"><input id="checkbox" type="checkbox"/></label>
<div class="magic_button">
<span>Click!</span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>

和我的 CSS

@import url(http://fonts.googleapis.com/css?family=Open+Sans);
html,body {
font-family:'Open Sans', sans-serif;
height:100%;
}
#checkbox, p {
display:none;
}
.magic_button {
background:#27ae60;
padding:6px 10px;
width:20%;
margin:0 auto;
text-align:center;
color:#fff;
font-size:16px;
font-weight:bold;
position:absolute;
top:calc(50% - 17px);
left:0;
right:0;
box-sizing:border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
transition:none;
-webkit-transition:none;
-moz-transition:none;
}
#checkbox:checked + .magic_button {
background:#e74c3c;
left:0;right:0;
top:0;bottom:0;
width:100%;
transition:width 2s;
-webkit-transition:width 2s;
-moz-transition:width 2s;
}

我一直在学习教程,但我终究无法弄清楚为什么我的代码无法正常工作。我知道我当然可以为此使用 java 脚本,但我正在尝试复选框技巧。我想要一个垂直和水平居中的按钮,当点击时,它需要宽度需要过渡并且需要扩展和改变颜色。有谁知道我怎样才能让它工作?如果可能的话,我还希望按钮文本消失,然后转到段落文本。如果没有,请随时给我一些 javascript,如果它不让人生气的话。

最佳答案

您需要将 label 元素放在 .magic_button 元素中。绝对定位它以填充整个按钮,允许您单击它并从而切换复选框。

label {
position:absolute;
left:0; right:0;
top:0; bottom:0;
}

这应该解决主要问题。如果您希望在单击按钮后隐藏按钮文本,您需要使用 :checked 伪类将其作为目标并将显示设置为 none。该段落也是如此。

像这样的东西会起作用:

#checkbox,
#checkbox:checked + .magic_button span,
.magic_button p {
display:none;
}
#checkbox:checked + .magic_button p {
display:block;
}

Example Here

您的代码首先无法正常工作的原因是标记。

<label for="checkbox"><input id="checkbox" type="checkbox"/></label>
<div class="magic_button">...</div>

选择器 #checkbox:checked + .magic_button 将选择 .magic_button 元素,该元素是已选中元素的相邻后续兄弟元素。由于复选框是 label 元素的子元素,因此它不起作用。使 input/.magic_button 元素与兄弟元素相邻,从而允许选择该元素。

作为绝对定位 label 元素的替代方法,您还可以将其包裹在 .magic_button 元素周围,如 this .当然,这意味着您还必须更改一些选择器。

关于javascript - CSS:复选框输入技巧不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23642768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com