0
私はカスタムトグルボタンを開発し、その前にテキストを添付しようとしています。テキストとトグルを同じ行にしたい。しかし、テキストは1行に、トグルは他の行に入っています。テキストとカスタムトグルを同じ行に表示
作業コード:
私は、スタイルdisplay:inline-block;
トグル円の形状を追加https://jsfiddle.net/nvarun123/x6v1nevw/1/が乱れてきています。私はコンポーネントとしてAngular2でこれを開発しようとしています。 Angular2で ウォーキングコード:http://plnkr.co/edit/4ZnrnJbSyFAp5c6Z0V7T?p=preview
HTMLコード:
<div style="display:inline;">
Toggle1:
<div class="onoffswitch" style="margin-bottom:5px;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="myonoffswitch" checked >
<label class="onoffswitch-label" for="myonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
<div style="display:inline;">
Toggle2:
<div class="onoffswitch" style="margin-bottom:5px;">
<input type="checkbox" name="onoffswitch1" class="onoffswitch-checkbox" id="myonoffswitch1" >
<label class="onoffswitch-label" for="myonoffswitch1">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
CSSコード:あなたのonoffswitchクラスは、デフォルトでの表示値を持つdiv要素に適用される
.onoffswitch {
position: relative; width: 50px;
-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
display: none;
}
.onoffswitch-label {
display: block; overflow: hidden; cursor: pointer;
border-radius: 10px;
}
.onoffswitch-inner {
display: block; width: 200%; margin-left: -100%;
transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
display: block; float: left; width: 50%; height: 22px; padding: 0; line-height: 22px;
font-size: 10px; color: white; font-family: sans-serif; font-weight: bold;
box-sizing: border-box;
}
.onoffswitch-inner:before {
content: "";//ON
padding-left: 8px;
background-color: lightgreen;
color: pink;
}
.onoffswitch-inner:after {
content: "";//OFF
padding-right: 6px;
background-color: red;
color: #F9FAFB;
text-align: right;
}
.onoffswitch-switch {
display: block; width: 20px; margin: 0px;
background: #F9FAFB;
position: absolute; top: 0; bottom: 0;
right: 30px;
border-radius: 20px;
transition: all 0.3s ease-in 0s;
box-shadow: 0.276px 0.961px 2px 0px rgba(0, 0, 0, 0.1);
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
right: 0px;
}
こんにちは、私はディスプレイを追加:インラインブロック;トグルボタンの円が外れています。私はplunkerコードを添付しました:http://plnkr.co/edit/4ZnrnJbSyFAp5c6Z0V7T?p=preview。私はそれを再利用するためにAngular2でコンポーネントを開発しています。 – Varun