ラジオ「radio」ボタンの見た目は簡単に変更することが出来ます。
当ページでは、簡単操作でラジオボタンをデザインできます。
普通のラジオボタン | → | CSSで変更すると |
---|---|---|
選択1選択2 |
色々試してみて、生成されたCSSをコピーしてご利用ください。
他▶
|
<div class="radioArea" id="makeImg">
<input type="radio" name="n1" id="r1" checked><label for="r1">りんご</label>
<input type="radio" name="n1" id="r2"><label for="r2">みかん</label>
<input type="radio" name="n1" id="r3"><label for="r3">ぶどう</label>
</div>
<style type="text/css"> #button { display : inline-block; border-radius : 5%; /* 角丸 */ font-size : 14pt; /* 文字サイズ */ text-align : center; /* 文字位置 */ cursor : pointer; /* カーソル */ padding : 10px 10px; /* 余白 */ background : #000066; /* 背景色 */ color : #ffffff; /* 文字色 */ line-height : 1em; /* 1行の高さ */ transition : .3s; /* なめらか変化 */ box-shadow : 4px 4px 3px #666666; /* 影の設定 */ border : 2px solid #000066; /* 枠の指定 */ } #button:hover { box-shadow : none; /* カーソル時の影消去 */ color : #000066; /* 背景色 */ background : #ffffff; /* 文字色 */ } </style>
画像選択のラジオボタンも簡単です。以下のhtmlとcssがサンプルとなります。
<div class="sample1"> <input type="radio" name="s1" id="i1" checked> <label for="i1"><img src="neko.png" alt="ねこ"></label> <input type="radio" name="s1" id="i2"> <label for="i2"><img src="usagi.png" alt="うさぎ"></label> <input type="radio" name="s1" id="i3"> <label for="i3"><img src="panda.png" alt="ぱんだ"></label> </div>
<style type="text/css"> .sample1 input[type="radio"] { display : none; /* チェックボックスは非表示 */ } /* --- チェックボックス直後のlabel --- */ .sample1 input[type="radio"] + label{ display : inline-block; margin : 5px; /* labelの間隔 */ Opacity : 0.7; /* 透明度 */ cursor : pointer; /* カーソル設定 */ transition : .2s; /* なめらか変化 */ transform : scale(0.9, 0.9); /* 少し小さく */ } /* --- 選択されたチェックボックス直後のlabel --- */ .sample1 input[type="radio"]:checked + label { Opacity : 1; /* 透明度 */ transform : scale(1, 1); /* 原寸に戻す */ } /* --- 選択されたチェックボックス直後のlabel --- */ .sample1 input[type="radio"]:not(:checked) + label:hover { Opacity : 0.9; /* 透明度 */ } </style>
ラジオボタンを「ON/OFF」「Yes/No」のスイッチボタンとして使用する場合は、以下ページにサンプルと自動生成があります。
ON/OFFスイッチをCSSのみで実装
フォントは使用するページ(html)により変わります。
生成できるホームページ・パーツ一覧 | |
文字のデザイン | |
画像のデザイン | |
ボタンのデザイン | |
入力項目のデザイン | |
テーブルのデザイン | |
BOXのデザイン | |
吹き出しのデザイン | |
ページのデザイン | |
図形のデザイン | |
ご利用時の注意事項・制約事項 | |
よくあるご質問 | |
何で無料なの? | |
生成コードに利用制限はある? | |
生成コードに保証はある? | |
jQueryで生成できない? |
スマートフォン・タブレット | 運営:株式会社シーマン |