我正在制作一个带有两个按钮的投票系统(upvote / downvote)。我使用了输入和标签来创建它,但是有一个问题:
如果我使用单选按钮,我可以向上或向下投票,但我不能不投票。
如果我使用复选框,我可以取消投票,但我也可以上下投票。
我想要达到的目的是只能投票或投票,同时还能够取消投票(想想reddit)。
我已经彻底找到了答案,我发现这不可能与CSS有关。有很多脚本,问题是我不知道JavaScript或jQuery,所以我不知道如何实现代码。
我认为最简单的解决方案是在点击upvote时取消选中downvote按钮,反之亦然,但同样,我不知道这段代码会是什么样子或者如何实现它。
也许使用纯CSS更简单的解决方案即使在检查完之后也会改变其他按钮的外观?我不知道,但如果它存在,我宁愿使用这样的解决方案。
我的代码:
input[type=radio] {
display: none
}
#up {
width: 20px;
height: 16px;
background: url(http://c.thumbs.redditmedia.com/Y5Gt7Gtk59BlV-3t.png) left top;
position: absolute;
left: 50px;
top: 50px
}
#down {
width: 20px;
height: 16px;
background: url(http://c.thumbs.redditmedia.com/Y5Gt7Gtk59BlV-3t.png) left bottom;
opacity: 0.5;
position: absolute;
left: 50px;
top: 84px
}
#vote {
width: 21px;
height: 18px;
text-align: center;
font-size: 26px;
line-height: 18px;
position: absolute;
left: 50px;
top: 66px;
z-index: -1
}
#up:hover {
background-position: top;
cursor: pointer
}
#upvote:checked ~ #up {
background-position: top;
}
#upvote:checked ~ #vote {
color: #DC5B28;
z-index: 1
}
#down:hover {
background-position: bottom;
cursor: pointer;
opacity: 1
}
#downvote:checked ~ #down {
background-position: bottom;
opacity: 1
}
#downvote:checked ~ #vote {
color: #3580DD
}
#no {
position: absolute;
display: none;
background: url(http://c.thumbs.redditmedia.com/Y5Gt7Gtk59BlV-3t.png)
}
#upvote:checked ~ #no {
display: block;
background-position: left top;
left: 50px;
top: 50px
}
#downvote:checked ~ #no {
display: block;
background-position: left bottom;
left: 50px;
top: 84px;
opacity: 0.5
}
<input type="radio" name="vote" value="+1" id="upvote">
<label for="upvote" id="up"></label>
<input type="radio" name="vote" value="-1" id="downvote">
<label for="downvote" id="down"></label>
<input type="radio" name="vote" value="0" id="novote">
<label for="novote" id="no"></label>
<div id="vote">•</div>
答案 0 :(得分:6)
如果您想要一个仅限CSS的解决方案,您可以尝试添加一个默认隐藏的第三个选项,它代表不投票。
然后,当用户upvotes或downvotes时,会显示第三个选项,并且它与所选选项重叠。
因此,当用户认为他再次点击所选选项时,他实际上是在选择无投票选项。
#vote {
position: relative;
}
#vote > input {
display: none; /* Hide radio buttons */
}
#vote > label {
cursor: pointer;
display: block;
width: 0;
border: 50px solid; /* We will make them look like... */
border-color: black transparent; /* ...triangles using borders */
}
#upvote + label {
border-top: none; /* Triangulating */
}
#downvote + label {
border-bottom: none; /* Triangulating */
margin-top: 15px; /* Space between triangles */
}
#vote > input:checked + label {
border-color: orange transparent; /* Highlight chosen option */
}
#vote > #novote-label {
display: none; /* Hide it by default */
position: absolute; /* Take it out of the normal flow */
border-top: none;
border-color: transparent;
}
#upvote:checked ~ #novote-label { /* Display it overlapping upvote */
display: block;
top: 0;
}
#downvote:checked ~ #novote-label { /* Display it overlapping downvote */
display: block;
bottom: 0;
}
&#13;
<div id="vote">
<input type="radio" name="vote" value="+1" id="upvote" />
<label for="upvote"></label>
<input type="radio" name="vote" value="-1" id="downvote" />
<label for="downvote"></label>
<input type="radio" name="vote" value="0" id="novote" />
<label for="novote" id="novote-label"></label>
</div>
&#13;
几乎没有变化,它也可以通过键盘访问:
#vote {
position: relative;
}
#vote > input { /* Hiding in a keyboard-accesible way */
opacity: 0;
position: absolute;
z-index: -1;
}
#vote > input:focus + label {
outline: 1px dotted #999; /* Keyboard friendly */
}
#vote > label {
cursor: pointer;
display: block;
width: 0;
border: 50px solid; /* We will make them look like... */
border-color: black transparent; /* ...triangles using borders */
}
#upvote + label {
border-top: none; /* Triangulating */
}
#downvote + label {
border-bottom: none; /* Triangulating */
margin-top: 15px; /* Space between triangles */
}
#vote > input:checked + label {
border-color: orange transparent; /* Highlight chosen option */
}
#vote > #novote-label {
display: none; /* Hide it by default */
position: absolute; /* Take it out of the normal flow */
border-top: none;
border-color: transparent;
}
#upvote:checked ~ #novote-label { /* Display it overlapping upvote */
display: block;
top: 0;
}
#downvote:checked ~ #novote-label { /* Display it overlapping downvote */
display: block;
bottom: 0;
}
&#13;
<div id="vote">
<input type="radio" name="vote" value="+1" id="upvote" />
<label for="upvote"></label>
<input type="radio" name="vote" value="-1" id="downvote" />
<label for="downvote"></label>
<input type="radio" name="vote" value="0" id="novote" />
<label for="novote" id="novote-label"></label>
</div>
&#13;
上面的片段使用边框来模拟三角形/箭头。同样,也可以使用背景图像。
#vote {
position: relative;
}
#vote > input {
display: none;
}
#vote > label {
cursor: pointer;
display: block;
width: 20px;
height: 16px;
background-image: url('http://i.stack.imgur.com/36F2b.png');
}
#vote > #up {
background-position: left top;
}
#vote > #down {
background-position: left bottom;
}
#upvote:checked ~ #up {
background-position: top;
}
#downvote:checked ~ #down {
background-position: bottom;
}
#vote > #no {
display: none;
position: absolute;
background: none;
}
#upvote:checked ~ #no {
display: block;
top: 0;
}
#downvote:checked ~ #no {
display: block;
bottom: 0;
}
&#13;
<div id="vote">
<input type="radio" name="vote" value="+1" id="upvote" />
<label for="upvote" id="up"></label>
<input type="radio" name="vote" value="-1" id="downvote" />
<label for="downvote" id="down"></label>
<input type="radio" name="vote" value="0" id="novote" />
<label for="novote" id="no"></label>
</div>
&#13;
答案 1 :(得分:0)
你有一个纯CSS解决方案,这里是一个javascript版本。它将点击监听器放在&#34;投票&#34;的祖先上。纽扣。单击并选中某个按钮时,它会取消选中同一容器中的其他投票按钮,这样一次只能检查一个投票。它可以使用任意数量的投票按钮(你可能会说+1,+ 2等)。
如果点击该复选框取消选中,例如取消投票时,该功能无效。确保脚本放在容器之后,或使用load事件。只要每个容器只包含一组按钮,就可以将监听器连接到任意数量的容器。
<!-- A container for the vote buttons -->
<div id="voteContainer">
<input type="checkbox" name="vote" value="+1" id="upvote">
<label for="upvote" id="up">Up</label>
<br>
<input type="checkbox" name="vote" value="-1" id="downvote">
<label for="downvote" id="down">Down</label>
</div>
<script>
(function() {
var div = document.getElementById('voteContainer');
if (div) div.onclick = setVote;
// Looks at the state of els
function setVote(event) {
event = event || window.event;
var target = event.target || event.srcElement;
// If target checkbox is checked, uncheck all others
if (target.checked) {
var els = this.querySelectorAll('input[name=' + target.name + ']')
for (var i=0; i<els.length; i++) {
els[i].checked = els[i] === target;
}
}
}
}());
</script>
以上应该适用于所有现代浏览器和IE回到IE 8.如果它需要在旧浏览器中工作,这可以很容易地完成,特别是如果页面中只有一组投票按钮(它需要对var els = ...
行的一个小修改。
标签元素不需要ID才能使脚本生效。