ラジオボタンは、inputタグのtype属性でtype=”radio”を指定することで作成されるが、このタグの標準スタイルは、CSSでオリジナルなレイアウトに変更できる。
今回は、Spring BootのWeb画面上で、CSSでラジオボタンをカスタマイズして表示するサンプルプログラムを作成してみたので、共有する。
前提条件
下記記事の実装が完了していること。
ヘッダー・メニュー・本文・フッターをCSSでデザインしたHTMLをSpring Bootで表示してみた業務で利用するアプリケーションで、ヘッダー・メニュー・本文・フッターを1つの画面に表示することが多々あるが、その際、CSSを利用すること...
サンプルプログラムの作成
作成したサンプルプログラムの構成は以下の通り。
なお、上記の赤枠は、今回変更したプログラムである。
index.htmlの内容は以下の通りで、本文にいろいろなレイアウトのラジオボタンを追加している。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | <!DOCTYPE html> <html lang="ja" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>ラジオボタンのカスタマイズ</title> <!-- CSSファイルを読み込む --> <link th:href="@{/css/demo.css}" rel="stylesheet" type="text/css" /> <!-- タイトル左のfavicon画像を設定する --> <link rel="icon" th:href="@{/img/purin.jpg}"> </head> <body> <header> ここにヘッダーを書きます。 </header> <main> <div class="container"> <div class="menu"> ここにメニューを書きます。幅は30%です。 </div> <div class="main"> <form action="*" method="post"> <h3>ラジオボタン(通常)</h3> <input type="radio" name="lang1" value="1" id="eng1" checked /> <label for="eng1">英語</label> <input type="radio" name="lang1" value="2" id="jpn1" /> <label for="jpn1">日本語</label> <input type="radio" name="lang1" value="3" id="chn1" /> <label for="chn1">中国語</label> <br/> <h3>ラジオボタン(非表示)</h3> <input type="radio" name="lang2" value="1" id="eng2" class="radio_none" checked /> <label for="eng2">英語</label> <input type="radio" name="lang2" value="2" id="jpn2" class="radio_none" /> <label for="jpn2">日本語</label> <input type="radio" name="lang2" value="3" id="chn2" class="radio_none" /> <label for="chn2">中国語</label> <br/> <h3>ラジオボタン(先頭に丸印、チェックマーク無し)</h3> <input type="radio" name="lang3" value="1" id="eng3" class="radio_none" checked /> <label for="eng3" class="lbl_circle">英語</label> <input type="radio" name="lang3" value="2" id="jpn3" class="radio_none" /> <label for="jpn3" class="lbl_circle">日本語</label> <input type="radio" name="lang3" value="3" id="chn3" class="radio_none" /> <label for="chn3" class="lbl_circle">中国語</label> <br/> <h3>ラジオボタン(先頭に丸印、チェックマーク有り)</h3> <input type="radio" name="lang4" value="1" id="eng4" class="radio_none" checked /> <label for="eng4" class="lbl_checked">英語</label> <input type="radio" name="lang4" value="2" id="jpn4" class="radio_none" /> <label for="jpn4" class="lbl_checked">日本語</label> <input type="radio" name="lang4" value="3" id="chn4" class="radio_none" /> <label for="chn4" class="lbl_checked">中国語</label> <br/> <h3>ラジオボタン(オリジナルなレイアウトで動作)</h3> <input type="radio" name="lang5" value="1" id="eng5" class="radio_none" checked /> <label for="eng5" class="lbl_origin">英語</label> <input type="radio" name="lang5" value="2" id="jpn5" class="radio_none" /> <label for="jpn5" class="lbl_origin">日本語</label> <input type="radio" name="lang5" value="3" id="chn5" class="radio_none" /> <label for="chn5" class="lbl_origin">中国語</label> <br/> <h3>テーブル内のラジオボタン(オリジナルなレイアウトで動作)</h3> <table> <thead> <tr> <th class="tbl_radio_width"></th> <th>タイトル1</th> <th>タイトル2</th> <th>タイトル3</th> <th>タイトル4</th> <th>タイトル5</th> </tr> </thead> <tbody> <tr> <td> <input type="radio" name="tbl1" value="1" id="col1" class="radio_none" checked /> <label for="col1" class="lbl_tbl"></label> </td> <td>カラム1</td> <td>カラム2</td> <td>カラム3</td> <td>カラム4</td> <td>カラム5</td> </tr> <tr> <td> <input type="radio" name="tbl1" value="2" id="col2" class="radio_none" /> <label for="col2" class="lbl_tbl"></label> </td> <td>カラム11</td> <td>カラム12</td> <td>カラム13</td> <td>カラム14</td> <td>カラム15</td> </tr> <tr> <td> <input type="radio" name="tbl1" value="3" id="col3" class="radio_none" /> <label for="col3" class="lbl_tbl"></label> </td> <td>カラム21</td> <td>カラム22</td> <td>カラム23</td> <td>カラム24</td> <td>カラム25</td> </tr> </tbody> </table> </form> </div> </div> </main> <footer> ここにフッターを書きます。 </footer> </body> </html> |
また、CSSファイルに追加した内容は以下の通りで、テーブルと各ラジオボタンのレイアウトを追加している。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | /* テーブル(本文内)のレイアウト */ main table { /* テーブルの上下余白(ボックス外)を20px、 左右余白(ボックス外)を40pxに設定 */ margin: 20px 40px; /* 隣接するセルのボーダーを重ねて表示する設定 */ border-collapse: collapse; /* カラム数が少なくてもテーブル幅を最大に保つため テーブルの幅を(本文全体-左右余白(80px))に設定 */ width: calc(100% - 80px); } main table th, main table td { /* テーブルの枠線を設定 */ border: solid 1px black; /* テキストの位置を上下中央揃えに設定 */ text-align: center; vertical-align: center; } main table th { /* 背景色を紺、文字色を白に設定 */ background: #000066; color: white; /* タイトル行の枠線の一部(内側)を白に設定 */ border-left-color: white; border-right: none; } /* タイトル行の枠線の一部(外側)を黒に戻す設定 */ main table th:first-of-type { border-left-color: black; } main table th:last-of-type { border-right: 1px solid black; } /* テーブル内のラジオボタンの横幅を設定 */ .tbl_radio_width { width: 50px; } /* 標準のラジオボタンの余白を設定*/ input[type=radio] ~ label { /* 右余白を20pxに設定 */ padding-right: 20px; } /* 標準のラジオボタンを非表示にする */ .radio_none { display: none; } /* ラジオボタンの各ラベル先頭に白丸を表示 */ /* ラジオボタン(先頭に丸印、チェックマーク無し) */ .lbl_circle { /* 後続の::after擬似要素の位置を調整するため、 位置を相対位置指定に設定 */ position: relative; /* 左余白(ボックス内)を50pxに設定 */ padding-left: 50px; } .lbl_circle::after { /* 擬似要素に設定する文字列を空文字に設定 */ content: ""; /* 幅や高さを指定できるよう、ブロック要素に変更 */ display: block; /* 各ラベル先頭の白丸の位置を絶対位置指定に 設定し、配置位置を決める */ position: absolute; top: 50%; left: 15px; margin-top: -10px; /* 横幅と高さを指定 */ width: 16px; height: 16px; /* 境界線を正円に指定 */ border-radius: 50%; /* 境界線を実線で指定 */ border: 2px solid #888888; } /* ラジオボタンの各ラベル先頭にチェックマークを表示 */ /* ラジオボタン(先頭に丸印、チェックマーク有り) */ .lbl_checked { /* .lbl_circleと同じプロパティを指定 */ position: relative; padding-left: 50px; } .lbl_checked::after { /* .lbl_circle::afterと同じプロパティを指定 */ content: ""; display: block; position: absolute; top: 50%; left: 15px; margin-top: -10px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid #888888; } .lbl_checked::before { /* .lbl_checked::afterと同じプロパティを指定 start */ content: ""; display: block; position: absolute; top: 50%; border-radius: 50%; /* .lbl_checked::afterと同じプロパティを指定 end */ /* 配置位置を決める */ left: 20px; margin-top: -5px; /* 横幅と高さ・背景色を指定 */ width: 10px; height: 10px; background: #000099; } /* ラジオボタンがオリジナルなレイアウトで動作するように設定 */ /* ラジオボタン(オリジナルなレイアウトで動作) */ .lbl_origin { /* .lbl_checkedと同じプロパティを指定 */ position: relative; padding-left: 50px; } .lbl_origin::after { /* .lbl_checked::afterと同じプロパティを指定 */ content: ""; display: block; position: absolute; top: 50%; left: 15px; margin-top: -10px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid #888888; } .lbl_origin::before { /* .lbl_checked::beforeと同じプロパティを指定 start */ content: ""; display: block; position: absolute; top: 50%; border-radius: 50%; left: 20px; margin-top: -5px; width: 10px; height: 10px; background: #000099; /* .lbl_checked::beforeと同じプロパティを指定 end */ /* チェックマークを非表示にする */ opacity: 0; } /* ラジオボタンが選択された場合に、チェックマークを設定 */ input[type=radio]:checked + .lbl_origin::before { /* チェックマークを表示する */ opacity: 1; } /* ラジオボタンがテーブル内でオリジナルなレイアウトで動作するように設定 */ /* テーブル内のラジオボタン(オリジナルなレイアウトで動作) */ .lbl_tbl { /* .lbl_originと同じプロパティを指定 */ /* padding-leftの値のみ変更 */ position: relative; padding-left: 20px; } .lbl_tbl::after { /* .lbl_origin::afterと同じプロパティを指定 */ /* leftの値のみ変更 */ content: ""; display: block; position: absolute; top: 50%; left: 10px; margin-top: -10px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid #888888; } .lbl_tbl::before { /* .lbl_origin::afterと同じプロパティを指定 */ /* leftの値のみ変更 */ content: ""; display: block; position: absolute; top: 50%; border-radius: 50%; left: 15px; margin-top: -5px; width: 10px; height: 10px; background: #000099; opacity: 0; } input[type=radio]:checked + .lbl_tbl::before { /* input[type=radio]:checked + .lbl_origin::beforeと 同じプロパティを指定 */ opacity: 1; } |
その他のソースコード内容は、以下のサイトを参照のこと。
https://github.com/purin-it/java/tree/master/spring-boot-css-radio-button/demo
「FlexClip」はテンプレートとして利用できる動画・画像・音楽などが充実した動画編集ツールだったテンプレートとして利用できるテキスト・動画・画像・音楽など(いずれも著作権フリー)が充実している動画編集ツールの一つに、「FlexCli...
サンプルプログラムの実行結果
Spring Bootアプリケーションを起動し、Edge(バージョン:117.0.2045.41 )で「http:// (ホスト名):(ポート番号)」とアクセスした結果は、以下の通り。
2)「ラジオボタン(通常)」「ラジオボタン(オリジナルなレイアウトで動作)」「テーブル内のラジオボタン(オリジナルなレイアウトで動作)」は、以下のように、ラジオボタンの位置を変更できる。
要点まとめ
- ラジオボタンは、inputタグのtype属性でtype=”radio”を指定することで作成されるが、このタグの標準スタイルは、CSSでオリジナルなレイアウトに変更できる。