gpt4 book ai didi

javascript - 在 form_for 中使用按钮作为 "checkbox"?

转载 作者:行者123 更新时间:2023-12-03 04:53:13 25 4
gpt4 key购买 nike

目前我正在为自己构建一个小项目,并提出了一个想法。

您可以使用按钮作为 form_for 中的切换按钮来在数据库中设置 bool 值吗?如果 bool 为 true,我希望有一个绿色按钮;如果 bool 为 false,我希望有一个红色按钮。

如果我单击按钮,它应该更改他的颜色和值,如果我提交表单,它应该将该值传递给创建方法。

有什么想法吗?

最佳答案

你可以尝试这样的事情 Orginal link from where code is taken

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

.switch input {display:none;}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: red;
-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%;
}
<!DOCTYPE html>
<html>
<head></head>
<body>

<h2>Toggle Switch</h2>

<label class="switch">
<input type="checkbox">
<div class="slider"></div>
</label>

<label class="switch">
<input type="checkbox" checked>
<div class="slider"></div>
</label><br><br>

<label class="switch">
<input type="checkbox">
<div class="slider round"></div>
</label>

<label class="switch">
<input type="checkbox" checked>
<div class="slider round"></div>
</label>

</body>
</html>

关于javascript - 在 form_for 中使用按钮作为 "checkbox"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42560003/

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