复选框图像叠加

时间:2016-01-11 20:33:13

标签: css forms checkbox

我只需要使用CSS的复选框帮助。

首先它正常运作。但是,我想在单击按钮时将选中的图像叠加在未检查的图像上。怎么做到这一点?



ContextWrapper

.gchoice_1_1_3 {border: 1px solid red;}

.gchoice_1_1_3 input[type="checkbox"] {display: none; }

.gchoice_1_1_3 input[type="checkbox"] + label:before {
	background: url('http://www.uswebcompany.com/plugins/gravityforms/wp-content/uploads/2016/01/christmasLights.png') 0 0px no-repeat;
    z-index: 10;
	content: "";
	display: inline-block;
	font-size: 12px;
	height: 75px;
	width: 75px;
	line-height: 16px;
	margin: -2px 6px 0 0;
	text-align: center;
	vertical-align: middle;
	positionL relative;
	border-radius: 10px;
	background-color: #6283B2;
}

.gchoice_1_1_3 input[type="checkbox"]:checked + label:before {
	background: url('http://www.uswebcompany.com/plugins/gravityforms/wp-content/uploads/2016/01/checkmark.png') 0 0px no-repeat;
	height: 75px;
	width: 75px;
	border-radius: 10px;
	background-color: #37924A;
}




1 个答案:

答案 0 :(得分:1)

您可以使用多个背景 但请务必检查浏览器支持以及应用背景的顺序问题。



.gchoice_1_1_3 {border: 1px solid red;}

.gchoice_1_1_3 input[type="checkbox"] {display: none; }

.gchoice_1_1_3 input[type="checkbox"] + label:before {
  background: url('http://www.uswebcompany.com/plugins/gravityforms/wp-content/uploads/2016/01/christmasLights.png') 0 0px no-repeat;
  z-index: 10;
  content: "";
  display: inline-block;
  font-size: 12px;
  height: 75px;
  width: 75px;
  line-height: 16px;
  margin: -2px 6px 0 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
  border-radius: 10px;
  background-color: #6283B2;
}

.gchoice_1_1_3 input[type="checkbox"]:checked + label:before {
  background: url('http://www.uswebcompany.com/plugins/gravityforms/wp-content/uploads/2016/01/checkmark.png'), url('http://www.uswebcompany.com/plugins/gravityforms/wp-content/uploads/2016/01/christmasLights.png') 0 0px no-repeat;
  height: 75px;
  width: 75px;
  border-radius: 10px;
  background-color: #37924A;
}

<li class='gchoice_1_1_3'>
  <input name='input_1.3' type='checkbox'  value='Christmas Lights'  id='choice_1_1_3' tabindex='22'  />
  <label for='choice_1_1_3' id='label_1_1_3'>Christmas Lights</label>
</li>
&#13;
&#13;
&#13;