php 160720ラジオボタンをタブ切り替えのデザインにする
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 160720ラジオボタンをタブ切り替えのデザインにする相关的知识,希望对你有一定的参考价值。
.box_radio input {
display: none;
}
.box_radio label{
display: block;
cursor: pointer;
width: 100%;
margin: 0;
margin-bottom: 20px;
padding: 15px;
background: #bdc3c7;
color: #869198;
font-size: 16px;
text-align: center;
line-height: 1;
transition: .2s;
}
.box_radio label:first-of-type{
border-radius: 3px 0 0 3px;
margin-bottom: 8px;
}
.box_radio label:last-of-type{
border-radius: 0 3px 3px 0;
}
.box_radio input[type="radio"]:checked + .switch-on {
background-color: #a1b91d;
color: #fff;
}
.box_radio input[type="radio"]:checked + .switch-off {
background-color: #e67168;
color: #fff;
}
.box_radio {
@include mq(tab) {
li {
width: (627 / 1260)*100%;
&:first-child {
margin-right: (6 / 1260)*100%;
}
float: left;
}
}
}
//radioの見た目をタブのようにする。
//レスポンシブ対応でフロート、幅設定で対応可
<div class="box_radio">
<ul>
<li><input type="radio" name="s2" id="on" value="1" checked="">
<label for="on" class="switch-on">新卒採用エントリーフォーム</label></li>
<li><input type="radio" name="s2" id="off" value="0">
<label for="off" class="switch-off">キャリア採用エントリーフォーム</label></li>
</ul>
</div>
以上是关于php 160720ラジオボタンをタブ切り替えのデザインにする的主要内容,如果未能解决你的问题,请参考以下文章
php タクソノミーの选択をラジオボタンにする
php 170831 cssのみでタブ切り替え
php 20180516タブ切り替え内のマッチハイト
html ラジオボタンの选択値を取得して値段を计算
php 20180316ひな形以外で现状一番単纯なタブ切り替え
javascript メニューのタブ切り替え