微信小程序CheckBox样式修改

实现的效果


微信小程序CheckBox样式修改_第1张图片


/* 未选中的 背景样式 */

checkbox .wx-checkbox-input{

  width: 40rpx;

  height: 40rpx;

  float: left

}

/* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */

checkbox .wx-checkbox-input.wx-checkbox-input-checked{

  border: none;

  background: rgba(65,163,250,1);

}

/* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */

checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{

  border-radius: 50%;/* 圆角 */

  width: 40rpx;/* 选中后对勾大小,不要超过背景的尺寸 */

  height: 40rpx;/* 选中后对勾大小,不要超过背景的尺寸 */

  line-height: 40rpx;

  text-align: center;

  font-size:30rpx; /* 对勾大小 30rpx */

  color:#fff; /* 对勾颜色 白色 */

  background: transparent;

  transform:translate(-50%, -50%) scale(1);

  -webkit-transform:translate(-50%, -50%) scale(1);

}





-----------------------------------------------------------------------------------------------------------------

其他补充

checkbox .wx-checkbox-input {

  border: none;

}

/*checkbox 选项框大小  */

checkbox .wx-checkbox-input {

  width:100%;

  height:100%;

}

/*checkbox选中后样式  */

checkbox .wx-checkbox-input.wx-checkbox-input-checked {

  background: #FF525C;

}

checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {

    width: 0rpx;

    height: 0rpx;

    text-align: center;

    font-size: 0;

    color: #fff;

    background-color: #fff;

}

你可能感兴趣的:(微信小程序CheckBox样式修改)