ホームページ > ウェブフロントエンド > htmlチュートリアル > カスタム フォーム スタイル チェックボックスと radio_html/css_WEB-ITnose

カスタム フォーム スタイル チェックボックスと radio_html/css_WEB-ITnose

WBOY
リリース: 2016-06-24 11:41:13
オリジナル
1004 人が閲覧しました

1. 理由

最近、仕事でカスタマイズされたラジオ スタイルを実装する必要があり、通常はデフォルトのスタイルを使用しています。解決策がまったく思いつかないため、検索を開始し、ついに良い解決策を見つけました。 . 遭遇した問題を完全に解決できます。

2、原則

構造体を記述するとき、ラジオまたはチェックボックスがラベルと一緒に使用されることは誰もが知っています。ラベルの for 属性値が入力の id 値と同じである場合、ラベルをクリックして選択します。ここでは、ラベルを使用して、背景画像 (美化されたチェックボックスまたはラジオ) をラベルに追加することで、入力のデフォルト スタイルをオーバーライドします。つまり、クリック プロセス中に、デフォルトの入力 (z インデックスを設定) は表示されません。入力:- 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;            }
ログイン後にコピー

終わり: つまり、問題は完全に解決しました。スクリーンショットを送ります参照元:

参照元:

フォームを美しくする?? ラジオボタンとチェックボタンをカスタマイズする (個人的な推奨)

フォームを美しくする

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート