使用图像代替单选按钮


167

如果我有一个带有按钮的广播组:

图片1

...我如何只显示选择选项中的图像而不显示按钮,例如

在此处输入图片说明


我们可以为您的代码看到实时链接或jsFiddle吗?
Nitesh

3
创建一个单选按钮集,并将其放在隐藏的div中。在图像单击设置上,选中特定的单选按钮意味着在第一幅图像单击上设置选中您的第一个单选按钮,其他两个都类似。如果您没有,我也可以通过代码进行解释。
Chiragit007

它不工作在这里你可以建议stackoverflow.com/questions/42736745/...
代码盖伊

Answers:


387
  • 无线电图像<label>
  • 隐藏单选按钮(请勿使用,display:none否则visibility:hidden会影响辅助功能)
  • 使用相邻的同级选择器将图像定位到隐藏的收音机旁边 +

/* HIDE RADIO */
[type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
[type=radio] + img {
  cursor: pointer;
}

/* CHECKED STYLES */
[type=radio]:checked + img {
  outline: 2px solid #f00;
}
<label>
  <input type="radio" name="test" value="small" checked>
  <img src="http://placehold.it/40x60/0bf/fff&text=A">
</label>

<label>
  <input type="radio" name="test" value="big">
  <img src="http://placehold.it/40x60/b0f/fff&text=B">
</label>

不要忘记在标签中添加一个,而在CSS中使用该类代替。


自定义样式和动画

这是使用<i>element和:afterpseudo 的高级版本:

CSS自定义收音机和复选框

body{color:#444;font:100%/1.4 sans-serif;}


/* CUSTOM RADIO & CHECKBOXES
   http://stackoverflow.com/a/17541916/383904 */
.rad,
.ckb{
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.rad > input,
.ckb > input{ /* HIDE ORG RADIO & CHECKBOX */
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
/* RADIO & CHECKBOX STYLES */
/* DEFAULT <i> STYLE */
.rad > i,
.ckb > i{ 
  display: inline-block;
  vertical-align: middle;
  width:  16px;
  height: 16px;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: inset 0 0 0 8px #fff;
  border: 1px solid gray;
  background: gray;
}
/* CHECKBOX OVERWRITE STYLES */
.ckb > i {
  width: 25px;
  border-radius: 3px;
}
.rad:hover > i{ /* HOVER <i> STYLE */
  box-shadow: inset 0 0 0 3px #fff;
  background: gray;
}
.rad > input:checked + i{ /* (RADIO CHECKED) <i> STYLE */
  box-shadow: inset 0 0 0 3px #fff;
  background: orange;
}
/* CHECKBOX */
.ckb > input + i:after{
  content: "";
  display: block;
  height: 12px;
  width:  12px;
  margin: 2px;
  border-radius: inherit;
  transition: inherit;
  background: gray;
}
.ckb > input:checked + i:after{ /* (RADIO CHECKED) <i> STYLE */
  margin-left: 11px;
  background:  orange;
}
<label class="rad">
  <input type="radio" name="rad1" value="a">
  <i></i> Radio 1
</label>
<label class="rad">
  <input type="radio" name="rad1" value="b" checked>
  <i></i> Radio 2
</label>

<br>

<label class="ckb">
  <input type="checkbox" name="ckb1" value="a" checked>
  <i></i> Checkbox 1
</label>
<label class="ckb">
  <input type="checkbox" name="ckb2" value="b">
  <i></i> Checkbox 2
</label>


10
+1为伪选择器,我想我过去曾经使用JavaScript来检查选中项!那会教我...
zik

3
隐藏的可见性意味着它不可单击,并且位置绝对使它脱离了文档流
99个问题-语法不是

1
这是一个很好的答案。我可以补充说,同样适用type="checkbox"
Wtower

好的,这很好。.效果很好,显然也可以在IE上工作,但实际上不是。图像的行为正确,但是提交表单后,没有缩略图选择。我想我正在使用Win 8.1附带的新IE。任何想法?
Junaid Rehman

3
晚会晚了,但是要小心。Visibility:hidden将隐藏屏幕阅读器的输入,并且从可访问性的角度来看,是一个很大的否定。
DPac '16

100

例:

小心!此解决方案仅适用于CSS。

信用卡选择器,已修改的演示中的万事达卡已悬停。

我建议您通过使用CSS3规则隐藏默认输入单选按钮来利用CSS3:

.options input{
    margin:0;padding:0;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}

我只是在几天前做一个例子。


1
太好了!我将其集成到ASP.NET表单中,并且就像一个魅力一样工作:)
Gus 2015年

此示例在XUbuntu 16.04.1下的Firefox 49.0.2中不起作用
Sergey Kudriavtsev

@SergeyKudriavtsev可能需要代码并进行更新(此答案来自2013年)。值得庆幸的是,该代码已开放给任何人进行改进。我会尽快调查一下。干杯。
理查德·科特里娜

工作正常,我在Firefox 60中,Windows 10
特雷弗

我为一组3张笑脸工作。现在,我需要在一种表单上有多行,每行都有自己的一组笑脸。我的问题是,更改一行后,它们都会全部更改。有什么想法需要修改哪个部分来完成此操作?
dave317 '18

19

您可以为此使用CSS。

HTML(仅用于演示,可自定义)

<div class="button">
    <input type="radio" name="a" value="a" id="a" />
    <label for="a">a</label>
</div>
<div class="button">
    <input type="radio" name="a" value="b" id="b" />
    <label for="b">b</label>
</div>
<div class="button">
    <input type="radio" name="a" value="c" id="c" />
    <label for="c">c</label>
</div>
...

的CSS

input[type="radio"] {
    display: none;
}
input[type="radio"]:checked + label {
    border: 1px solid red;
}

jsFiddle


6

使单选按钮保持隐藏状态,并在单击图像时,使用JavaScript对其进行选择并设置图像样式以使其看起来像已选中。这是标记-

<div id="radio-button-wrapper">
    <span class="image-radio">
        <input name="any-name" style="display:none" type="radio"/>
        <img src="...">
    </span>
    <span class="image-radio">
        <input name="any-name" style="display:none" type="radio"/>
        <img src="...">
    </span>
</div>

和JS

 $(".image-radio img").click(function(){
     $(this).prev().attr('checked',true);
 })

的CSS

span.image-radio input[type="radio"]:checked + img{
    border:1px solid red;
}

4

仅使用一个类来隐藏一些...基于https://stackoverflow.com/a/17541916/1815624

/* HIDE RADIO */
.hiddenradio [type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
.hiddenradio [type=radio] + img {
  cursor: pointer;
}

/* CHECKED STYLES */
.hiddenradio [type=radio]:checked + img {
  outline: 2px solid #f00;
}
<div class="hiddenradio">
<label>
  <input type="radio" name="test" value="small" checked>
  <img src="http://placehold.it/40x60/0bf/fff&text=A">
</label>

<label>
  <input type="radio" name="test" value="big">
  <img src="http://placehold.it/40x60/b0f/fff&text=B">
</label>
</div>

<div class="">
<label>
  <input type="radio" name="test" value="small" checked>
  <img src="http://placehold.it/40x60/0bf/fff&text=A">
</label>

<label>
  <input type="radio" name="test" value="big">
  <img src="http://placehold.it/40x60/b0f/fff&text=B">
</label>
</div>


1

这是一个基于此处示例的简单jQuery UI解决方案:

http://jqueryui.com/button/#radio

修改后的代码:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Button - Radios</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.3/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script>
  $(function() {
    $( "#radio" ).buttonset();
  });
  </script>
</head>
<body>

<form>
  <div id="radio">
    <input type="radio" id="radio1" name="radio"><label for="radio1"><img src="image1.gif" /></label>
    <input type="radio" id="radio2" name="radio" checked="checked"><label for="radio2"><img src="image2.gif" /></label>
    <input type="radio" id="radio3" name="radio"><label for="radio3"><img src="image3.gif" /></label>
  </div>
</form>

</body>
</html>

jQueryUI处理图像背景,因此您知道选中了哪个按钮。

注意:如果要通过Javascript将按钮设置为选中或取消选中,则必须调用刷新功能:

        $('#radio3').prop('checked', true).button("refresh");

0

通过使用label和span元素,可以将图像放置在单选按钮的位置。

   <div class="customize-radio">
        <label>Favourite Smiley</label><br>
        <label for="hahaha">
        <input type="radio" name="smiley" id="hahaha">
        <span class="haha-img"></span>
        HAHAHA
        </label>
        <label for="kiss">
        <input type="radio" name="smiley" id="kiss">
        <span class="kiss-img"></span>
        Kiss
        </label>
        <label for="tongueOut">
        <input type="radio" name="smiley" id="tongueOut">
        <span class="tongueout-img"></span>
        TongueOut
        </label>
    </div>

单选按钮应隐藏,

.customize-radio label > input[type = 'radio'] {
    visibility: hidden;
    position: absolute;
}

图片可以在span标签中给出,

.customize-radio label > input[type = 'radio'] ~ span{
    cursor: pointer;
    width: 27px;
    height: 24px;
    display: inline-block;
    background-size: 27px 24px;
    background-repeat: no-repeat;
}
.haha-img {
    background-image: url('hahabefore.png');
}

.kiss-img{
    background-image: url('kissbefore.png');
}
.tongueout-img{
    background-image: url('tongueoutbefore.png');
}

要通过单击单选按钮更改图像,请在输入标签中添加选中状态,

.customize-radio label > input[type = 'radio']:checked ~ span.haha-img{
     background-image: url('haha.png');
}
.customize-radio label > input[type = 'radio']:checked ~ span.kiss-img{
    background-image: url('kiss.png');
}
.customize-radio label > input[type = 'radio']:checked ~ span.tongueout-img{
        background-image: url('tongueout.png');
}

如果您有任何疑问,请参阅以下链接,因为我已从以下博客(http://frontendsupport.blogspot.com/2018/06/cool-radio-buttons-with-images.html)中获取解决方案


0

这是一个非常简单的例子

input[type="radio"]{
   display:none;
}

input[type="radio"] + label
{
    background-image:url(http://www.clker.com/cliparts/c/q/l/t/l/B/radiobutton-unchecked-sm-md.png);
    background-size: 100px 100px;
    height: 100px;
    width: 100px;
    display:inline-block;
    padding: 0 0 0 0px;
    cursor:pointer;
}

input[type="radio"]:checked + label
{
    background-image:url(http://www.clker.com/cliparts/M/2/V/6/F/u/radiobutton-checked-sm-md.png);
}
<div>
  <input type="radio" id="shipadd1" value=1 name="address" />
  <label for="shipadd1"></label>
  value 1
</div>

<div>
  <input type="radio" id="shipadd2" value=2 name="address" />
  <label for="shipadd2"></label>
  value 2
</div>

演示:http//jsfiddle.net/La8wQ/2471/

基于此技巧的此示例:https : //css-tricks.com/the-checkbox-hack/

我测试过:chrome,firefox,safari

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.