web-dev-qa-db-ja.com

チェックボックスのチェック画像をカスタム画像に変更します

CSSを使用してチェックボックスのデフォルトの「ボックス画像」を変更しようとしていますが、機能しません。これを回避する方法はありますか?

.class_checkbox{
    background: url("../images/button_bullet_normal.png") no-repeat scroll 0 0 transparent;
}
<input type="checkbox" class="class_checkbox">
32
themis

試してください:

<input type="checkbox" class="input_class_checkbox">

jQuery

$('.input_class_checkbox').each(function(){
    $(this).hide().after('<div class="class_checkbox" />');

});

$('.class_checkbox').on('click',function(){
    $(this).toggleClass('checked').prev().prop('checked',$(this).is('.checked'))
});

フィドル: http://jsfiddle.net/cn6kn/

$('.input_class_checkbox').each(function(){
    $(this).hide().after('<div class="class_checkbox" />');

});

$('.class_checkbox').on('click',function(){
    $(this).toggleClass('checked').prev().prop('checked',$(this).is('.checked'))
});
.class_checkbox {
    width: 20px;  
    height: 20px;
    background-color: red;
}
.class_checkbox.checked {
    background-color: green;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="checkbox" class="input_class_checkbox">
12
iambriansreed

純粋なcssを使用できます。このようなチェックボックスにラベルを追加するだけです。

.check_box {
    display:none;
}

.check_box + label{
    background:url('images/check-box.png') no-repeat;
    height: 16px;
    width: 16px;
    display:inline-block;
    padding: 0 0 0 0px;
}

.check_box:checked + label{
    background:url('images/check-box-checked.png') no-repeat;
    height: 16px;
    width: 16px;
    display:inline-block;
    padding: 0 0 0 0px;
}

HTMLの例:

    .check_box {
        display:none;
    }

    .check_box + label{
        background:url('images/check-box.png') no-repeat;
        height: 16px;
        width: 16px;
        display:inline-block;
        padding: 0 0 0 0px;
    }

    .check_box:checked + label{
        background:url('images/check-box-checked.png') no-repeat;
        height: 16px;
        width: 16px;
        display:inline-block;
        padding: 0 0 0 0px;
    }
<input type="checkbox" class="check_box" id="checkbox1">
<label for="checkbox1">
87
ali mokrani

純粋なCSSを使用してFiddleを作成しました。最も投票された答えは、クリックイベントを処理せず、チェックボックスの値が変更されないためうまく機能しません。

これは私の例です:

http://jsfiddle.net/kEHGN/1/

基本的に、次のhtmlが必要です。

<div class="checkbox_wrapper">
    <input type="checkbox" />
    <label></label>
</div>

そして、次のCSS:

.checkbox_wrapper{
    position: relative;
    height: 16px;
    width: 17px;
}

input[type="checkbox"] {
    opacity:0;
    height: 16px;
    width: 17px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

input[type="checkbox"] + label{
    background:url('../images/unchecked.png') no-repeat;
    height: 16px;
    width: 17px;
    display:inline-block;
    padding: 0 0 0 0px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

input[type="checkbox"]:checked + label{
    background:url('../images/checked.png') no-repeat;
    height: 16px;
    width: 17px;
    display:inline-block;
    padding: 0 0 0 0px;
}

画像のルートを確認するだけで、幅と高さは画像の幅と高さと等しくなるはずです。フィドラーでは、base64でエンコードされた画像を使用しています。

私はそれが役に立つことを願っています。

7
Tony

隣接するラベルや周囲のdivを使用せずに、別の方法を見つけました。

私のユースケースは、これらの気の利いたTODOリストを生成するマークダウンパーサーがあり、スタイルを設定したかったということです。生成されたHTMLを変更することはオプションではなかったので、このソリューションを思いつきました。

次のようなチェックボックスが与えられます:

<input type="checkbox" id="cb">

次のように、チェックボックスにvisibility: hiddenを、:: afterにvisibility: visibleを使用してスタイルを設定できます。

#cb {
  visibility: hidden;
}

input#cb::after {
  visibility: visible;
  content: "F";
  color: red;
  background: green;
  padding: 8px;
}

input#cb:checked::after {
  content: " T ";
  color: green;
  background: red;
}
<!doctype html>
<html>

<body>
  <input type="checkbox" id="cb">
</body>

</html>

編集:

コメントの@connexoは、入力要素にコンテンツを含めることはできないと指摘しました。ラベル要素を使用して簡単に実行できます。たとえば、次のようになります(これが間違っている場合は誰かに修正してください。テストするのに便利な非Webkitブラウザーはありません)。

#cb-span * {
  visibility: hidden;
}

input#cb + label::after {
  visibility: visible;
  content: "F";
  color: red;
  background: green;
  padding: 8px;
}

input#cb:checked + label::after {
  content: " T ";
  color: green;
  background: red;
}
<!doctype html>
<html>

<body>
  <span id="cb-span">
    <input type="checkbox" id="cb">
    <label for="cb"></label>
  </span>
</body>

</html>

チェックボックスは通常のチェックボックスと同じように機能し、好きなようにスタイル設定できます。

たぶんそれは誰かを助けるでしょう(そして、私はウェブ上でこのようなものを見つけていないので、それをブックマークすることができます)

3
Enbyted

LESSで私のサンプルが役に立つかもしれません。

<div class="custom-checkbox">
    <input component="input" type="checkbox"/>
    <label>Here is caption right to checkbox</label>
</div>

    @imgsize: 25px;
    .custom-checkbox{
        position: relative;

        > input[type="checkbox"] {

        display:none;
        position: absolute;
        top: 0;
        left: 0;

            + label{

                background:url('../img/unchecked.png') no-repeat 0 0;
                background-size:@imgsize;
                height: @imgsize;
                padding: 4px 0 5px 35px;
                display: inline-block;
                -webkit-transition-duration: 0.3s;
                -moz-transition-duration: 0.3s;
                transition-duration: 0.3s;        
            }
        }
        > input[type="checkbox"]:checked + label{

            background:url('../img/checked.png') no-repeat;
            background-size:@imgsize @imgsize;
        }
    }
1
Sergei Ryzhov