ホームページ > 記事 > ウェブフロントエンド > jQuery はカスタム チェックボックスとラジオ スタイルを実装します_jquery
1、原因
最近、仕事でカスタマイズされたラジオ スタイルを実装する必要があり、通常はデフォルトのスタイルを使用しています。解決策がまったく思いつかないので、探し始めました。最終的に、完璧に実現できる良い解決策を見つけました。私たちが直面している問題を解決します。
2、原則
構造体を記述するとき、ラベルと一緒にラジオまたはチェックボックスが使用されることは誰もが知っています。ラベルの for 属性値が入力の id 値と同じである場合、ここでラベルをクリックして入力を選択します。 、ラベルを上書きするために使用される入力のデフォルト スタイルは、背景画像 (美化されたチェックボックスまたはラジオ) をラベルに追加することによって行われます。つまり、クリック プロセス中にはデフォルトの入力 (set z-index:-) が表示されません。 1 入力用)、ラベルをクリックし、さまざまなイベントを通じてさまざまな背景画像をロードします (背景画像を変更する位置はここにあります)
3. チェックボックスまたはラジオを美しくするためにデフォルトのスタイルを設定します
(1) ページ構成
<form class="form" method="post"> <fieldset> <legend>Which genres do you like?</legend> <input type="checkbox" value="action" id="check-1" name="genre"><label for="check-1" class="">Action / Adventure</label> <input type="checkbox" value="comedy" id="check-2" name="genre"><label for="check-2" class="">Comedy</label> <input type="checkbox" value="epic" id="check-3" name="genre"><label for="check-3" class="">Epic / Historical</label> <input type="checkbox" value="science" id="check-4" name="genre"><label for="check-4" class="">Science Fiction</label> <input type="checkbox" value="romance" id="check-5" name="genre"><label for="check-5" class="">Romance</label> <input type="checkbox" value="western" id="check-6" name="genre"><label for="check-6" class="">Western</label> </fieldset> <fieldset> <legend>Caddyshack is the greatest movie of all time, right?</legend> <input type="radio" value="1" id="radio-1" name="opinions"><label for="radio-1" class="">Totally</label> <input type="radio" value="1" id="radio-2" name="opinions"><label for="radio-2" class="">You must be kidding</label> <input type="radio" value="1" id="radio-3" name="opinions"><label for="radio-3" class="">What's Caddyshack?</label> </fieldset> </form>
(2) jqueryコード(jqueryライブラリの導入が必要)
jQuery.fn.customInput = function(){ $(this).each(function(i){ if($(this).is('[type=checkbox],[type=radio]')){ var input = $(this); //get the associated label using the input's id var label = $('label[for='+input.attr('id')+']'); //get type,for classname suffix var inputType = (input.is('[type=checkbox]')) ? 'checkbox' : 'radio'; //wrap the input + label in a div $('<div class="custom-'+ inputType +'"></div>').insertBefore(input).append(input,label); //find all inputs in this set using the shared name attribute var allInputs = $('input[name='+input.attr('name')+']'); //necessary for browsers that don't support the :hover pseudo class on labels label.hover(function(){ $(this).addClass('hover'); if(inputType == 'checkbox' && input.is(':checked')) { $(this).addClass('checkedHover'); } },function(){ $(this).removeClass('hover checkedHover'); }); //bind custom event, trigger it, bind click,focus,blur events input.bind('updateState',function(){ if(input.is(':checked')){ if(input.is(':radio')){ allInputs.each(function(){ $('label[for='+$(this).attr('id')+']').removeClass('checked'); }); }; label.addClass('checked'); } else { label.removeClass('checked checkedHover checkedFocus'); } }) .trigger('updateState') .click(function(){ $(this).trigger('updateState'); }) .focus(function(){ label.addClass('focus'); if(inputType == 'checkbox' && input.is(':checked')) { $(this).addClass('checkedFocus'); } }) .blur(function(){ label.removeClass('focus checkedFocus'); }); } }); }
jquery ライブラリと上記のコードを導入した後、次のコードを実行できます
$('input').customInput();
(3) 生成された外側の div
ラベルと入力がペアで記述されるコード構造の場合、図に示すように、その外側に div が生成されます。
(4) カスタムのデフォルト スタイルを設定します
次のように画像を準備します:
なぜ上部が上部ではなく、一定の距離にあるのか疑問に思われるかもしれません。入力オプションのほとんどが中央にあり、ラベルの背景画像を使用してそれをシミュレートしているためです。入力オプション 中央に表示します。つまり、ico の小さなアイコンを縦に並べ、中央に表示するには一定の距離を空ける必要があります。
/* wrapper divs */ .custom-checkbox, .custom-radio { position: relative; display: inline-block; } /* input, label positioning */ .custom-checkbox input, .custom-radio input { position: absolute; left: 2px; top: 3px; margin: 0; z-index: -1; } .custom-checkbox label, .custom-radio label { display: block; position: relative; z-index: 1; font-size: 1.3em; padding-right: 1em; line-height: 1; padding: .5em 0 .5em 30px; margin: 0 0 .3em; cursor: pointer; }
これらは最も外側の設定です。もちろん、自分で変更することもできます
/* ==默认状态效果== */ .custom-checkbox label { background: url(images/checkbox.gif) no-repeat; } .custom-radio label { background: url(images/button-radio.png) no-repeat; } .custom-checkbox label, .custom-radio label { background-position: 0px 0px; }
/*==鼠标悬停和得到焦点状态==*/ .custom-checkbox label.hover, .custom-checkbox label.focus, .custom-radio label.hover, .custom-radio label.focus { /*background-position: -10px -114px;*/ } /*==选中状态==*/ .custom-checkbox label.checked, .custom-radio label.checked { background-position: 0px -47px; } .custom-checkbox label.checkedHover, .custom-checkbox label.checkedFocus { /*background-position: -10px -314px;*/ } .custom-checkbox label.focus, .custom-radio label.focus { outline: 1px dotted #ccc; }
終了: つまり、問題は完全に解決しました。確認するためにスクリーンショットを送ります
以上がこの記事の全内容です。皆さんに気に入っていただければ幸いです。