- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开展一个元素,元素所有者希望 2 个单选按钮的行为类似于一个 ios 样式的开关 - 仅使用 CSS。
我在此看到的大多数示例都使用复选框 - 这是有道理的 - 但无法更改标记。
我一直在看这个:http://ghinda.net/css-toggle-switch/
我举了一个我正在尝试做的例子:http://codepen.io/phillipkregg/pen/wgqIx
有没有办法通过在第二个链接中保留标记原样来重新创建它?提前致谢。
标记:
<!-- This works fine -->
<h3>This works fine since it's just one input</h3>
<label class="checkbox toggle ios" style="width: 100px" onclick="">
<input type="checkbox" />
<span>
Wireless
<span>On</span>
<span>Off</span>
</span>
<a class="slide-button"></a>
</label>
<br>
<h3> This is a little tricky - since it should behave as one switch, but there are actually 2 inputs</h3>
<!-- I'm trying to recreate the above with the markup below ( 1 switch for 2 inputs) -->
<div class="switch-wrapper">
<label for="field-gender-male">
<input type="radio" name="gender-p-653-0" value="1" checked="checked" id="field-gender-male">
Male
</label>
<label for="field-gender-female">
<input type="radio" name="gender-p-653-0" value="2" id="field-gender-female">
Female
</label>
</div>
CSS(这来 self 上面链接的 ghinda.net 元素):
* {
font-family: sans-serif;
}
@charset "UTF-8";
/*
* CSS TOGGLE SWITCHES
* Unlicense
*
* Ionuț Colceriu - ghinda.net
* https://github.com/ghinda/css-toggle-switch
*
*/
/* Toggle Switches
*/
/* Shared
*/
@-webkit-keyframes bugfix {
from {
position: relative;
}
to {
position: relative;
}
}
/* Checkbox
*/
/* Radio Switch
*/
/* Hide by default
*/
.switch .slide-button,
.toggle span span {
display: none;
}
/* We can't test for a specific feature,
* so we only target browsers with support for media queries.
*/
@media only screen {
/* Checkbox toggle
*/
.toggle {
display: block;
height: 30px;
/* Outline the toggles when the inputs are focused
*/
/* Bugfix for older Webkit, including mobile Webkit. Adapted from:
* http://css-tricks.com/webkit-sibling-bug/
*/
-webkit-animation: bugfix infinite 1s;
position: relative;
padding: 0;
margin-left: 100px;
/* Position the label over all the elements, except the slide-button
* Clicking anywhere on the label will change the switch-state
*/
/* Don't hide the input from screen-readers and keyboard access
*/
}
.toggle * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.toggle .slide-button {
display: block;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.toggle label,
.toggle > span {
line-height: 30px;
vertical-align: middle;
}
.toggle input:focus ~ .slide-button,
.toggle input:focus + label {
outline: 1px dotted #888;
}
.toggle label {
position: relative;
z-index: 3;
display: block;
width: 100%;
}
.toggle input {
position: absolute;
opacity: 0;
z-index: 5;
}
.toggle input:checked ~ .slide-button {
right: 50%;
}
.toggle > span {
position: absolute;
left: -100px;
width: 100%;
margin: 0;
padding-right: 100px;
text-align: left;
}
.toggle > span span {
position: absolute;
top: 0;
left: 0;
z-index: 5;
display: block;
width: 50%;
margin-left: 100px;
text-align: center;
}
.toggle > span span:last-child {
left: 50%;
}
.toggle .slide-button {
position: absolute;
right: 0;
top: 0;
z-index: 4;
display: block;
width: 50%;
height: 100%;
padding: 0;
}
/* Radio switch
*/
.switch {
display: block;
height: 30px;
/* Outline the toggles when the inputs are focused
*/
/* Bugfix for older Webkit, including mobile Webkit. Adapted from:
* http://css-tricks.com/webkit-sibling-bug/
*/
-webkit-animation: bugfix infinite 1s;
position: relative;
padding: 0;
/* Generate styles for the multiple states */
}
.switch * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.switch .slide-button {
display: block;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.switch label,
.switch > span {
line-height: 30px;
vertical-align: middle;
}
.switch input:focus ~ .slide-button,
.switch input:focus + label {
outline: 1px dotted #888;
}
.switch input {
position: absolute;
opacity: 0;
}
.switch label {
position: relative;
z-index: 2;
float: left;
width: 50%;
height: 100%;
margin: 0;
text-align: center;
}
.switch .slide-button {
position: absolute;
top: 0;
left: 0;
padding: 0;
z-index: 1;
width: 50%;
height: 100%;
}
.switch input:last-of-type:checked ~ .slide-button {
left: 50%;
}
.switch.switch-3 label,
.switch.switch-3 .slide-button {
width: 33.33333%;
}
.switch.switch-3 input:checked:nth-of-type(2) ~ .slide-button {
left: 33.33333%;
}
.switch.switch-3 input:checked:last-of-type ~ .slide-button {
left: 66.66667%;
}
.switch.switch-4 label,
.switch.switch-4 .slide-button {
width: 25%;
}
.switch.switch-4 input:checked:nth-of-type(2) ~ .slide-button {
left: 25%;
}
.switch.switch-4 input:checked:nth-of-type(3) ~ .slide-button {
left: 50%;
}
.switch.switch-4 input:checked:last-of-type ~ .slide-button {
left: 75%;
}
.switch.switch-5 label,
.switch.switch-5 .slide-button {
width: 20%;
}
.switch.switch-5 input:checked:nth-of-type(2) ~ .slide-button {
left: 20%;
}
.switch.switch-5 input:checked:nth-of-type(3) ~ .slide-button {
left: 40%;
}
.switch.switch-5 input:checked:nth-of-type(4) ~ .slide-button {
left: 60%;
}
.switch.switch-5 input:checked:last-of-type ~ .slide-button {
left: 80%;
}
/* Standalone Themes */
/* Candy Theme
* Based on the "Sort Switches / Toggles (PSD)" by Ormal Clarck
* http://www.premiumpixels.com/freebies/sort-switches-toggles-psd/
*/
.candy {
background-color: #2d3035;
border-radius: 3px;
color: #fff;
font-weight: bold;
text-align: center;
text-shadow: 1px 1px 1px #191b1e;
-webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 0px rgba(255, 255, 255, 0.2);
-moz-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 0px rgba(255, 255, 255, 0.2);
box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 0px rgba(255, 255, 255, 0.2);
}
.candy input:checked + label {
color: #333;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.candy .slide-button {
border: 1px solid #333;
background-color: #70c66b;
border-radius: 3px;
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}
.candy > span {
color: #333;
text-shadow: none;
}
.candy span {
color: #fff;
}
.candy.blue .slide-button {
background-color: #38a3d4;
}
.candy.yellow .slide-button {
background-color: #f5e560;
}
/* Android Theme
*/
.android {
background-color: #464747;
border-radius: 1px;
color: #fff;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
-moz-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
/* Selected ON toggle
*/
}
.android > span span {
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
.android > span span:first-of-type {
opacity: 0;
}
.android .slide-button {
background-color: #666;
border-radius: 1px;
-webkit-box-shadow: inset rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.3) 0 1px 0;
-moz-box-shadow: inset rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.3) 0 1px 0;
box-shadow: inset rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.3) 0 1px 0;
}
.android.toggle input:first-of-type:checked ~ .slide-button {
background-color: #0E88B1;
}
.android.toggle input:first-of-type:checked ~ span span {
opacity: 0;
}
.android.toggle input:first-of-type:checked ~ span span:first-of-type {
opacity: 1;
}
.android.switch,
.android > span span {
font-size: 85%;
text-transform: uppercase;
}
/* iOS Theme
*/
.ios.toggle {
color: lightgrey;
}
.ios.toggle .slide-button {
width: 30px;
background-color: white;
border: 1px solid lightgrey;
border-radius: 100%;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
-webkit-box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.025), 0 1px 4px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.025), 0 1px 4px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.025), 0 1px 4px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.1);
}
.ios.toggle > span span {
width: 100%;
left: 0;
}
.ios.toggle > span span:first-of-type {
opacity: 0;
padding-left: 30px;
}
.ios.toggle > span span:last-of-type {
padding-right: 30px;
}
.ios.toggle > span:before {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
left: 100px;
top: 0;
background-color: #fafafa;
border: 1px solid lightgrey;
border-radius: 30px;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
-moz-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
}
.ios.toggle input:first-of-type:checked ~ .slide-button {
left: 0;
}
.ios.toggle input:first-of-type:checked ~ span:before {
border-color: #53d76a;
-webkit-box-shadow: inset 0 0 0 30px #53d76a;
-moz-box-shadow: inset 0 0 0 30px #53d76a;
box-shadow: inset 0 0 0 30px #53d76a;
}
.ios.toggle input:first-of-type:checked ~ span span {
opacity: 0;
}
.ios.toggle input:first-of-type:checked ~ span span:first-of-type {
opacity: 1;
color: white;
}
.ios.switch {
background-color: #fafafa;
border: 1px solid lightgrey;
border-radius: 30px;
color: #868686;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
-moz-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
}
.ios.switch .slide-button {
background-color: #53d76a;
border-radius: 25px;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.ios input:checked + label {
color: #3a3a3a;
}
}
最佳答案
这是部分解决方案。您必须分别将标签放在 radio 之后,并在标签内切换文本(因为当您选择一个标签时,您需要单击标签来切换另一个)。您可以自己添加背景图片位置的动画,使其看起来像在滑动。
HTML
<div class="switch-wrapper">
<input type="radio" name="gender-p-653-0" value="1" checked="checked" id="field-gender-male" /><label for="field-gender-male">Female</label>
<input type="radio" name="gender-p-653-0" value="2" id="field-gender-female" /><label for="field-gender-female">Male</label>
</div>
CSS
/* style the labels */
label[for=field-gender-male], label[for=field-gender-female] {
position: relative;
display: block;
width: 80px;
background-color: white;
padding: 0 20px;
margin: 0;
line-height: 20px;
text-align: center;
font-size: 16px;
border: 1px solid gray;
border-radius: 1em;
}
/* hide the radios */
#field-gender-male, #field-gender-female {
display: none;
}
/* background image position */
label[for=field-gender-male] {
background-position: top right;
}
label[for=field-gender-female] {
background-position: top left;
}
/* when checked hide */
#field-gender-male:checked + label,
#field-gender-female:checked + label {
display: none;
}
/* background image */
label[for=field-gender-male],
label[for=field-gender-female] {
background-repeat: no-repeat;
background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAAAAMwAAZgAAmQAAzAAA/wArAAArMwArZgArmQArzAAr/wBVAABVMwBVZgBVmQBVzABV/wCAAACAMwCAZgCAmQCAzACA/wCqAACqMwCqZgCqmQCqzACq/wDVAADVMwDVZgDVmQDVzADV/wD/AAD/MwD/ZgD/mQD/zAD//zMAADMAMzMAZjMAmTMAzDMA/zMrADMrMzMrZjMrmTMrzDMr/zNVADNVMzNVZjNVmTNVzDNV/zOAADOAMzOAZjOAmTOAzDOA/zOqADOqMzOqZjOqmTOqzDOq/zPVADPVMzPVZjPVmTPVzDPV/zP/ADP/MzP/ZjP/mTP/zDP//2YAAGYAM2YAZmYAmWYAzGYA/2YrAGYrM2YrZmYrmWYrzGYr/2ZVAGZVM2ZVZmZVmWZVzGZV/2aAAGaAM2aAZmaAmWaAzGaA/2aqAGaqM2aqZmaqmWaqzGaq/2bVAGbVM2bVZmbVmWbVzGbV/2b/AGb/M2b/Zmb/mWb/zGb//5kAAJkAM5kAZpkAmZkAzJkA/5krAJkrM5krZpkrmZkrzJkr/5lVAJlVM5lVZplVmZlVzJlV/5mAAJmAM5mAZpmAmZmAzJmA/5mqAJmqM5mqZpmqmZmqzJmq/5nVAJnVM5nVZpnVmZnVzJnV/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwAM8wAZswAmcwAzMwA/8wrAMwrM8wrZswrmcwrzMwr/8xVAMxVM8xVZsxVmcxVzMxV/8yAAMyAM8yAZsyAmcyAzMyA/8yqAMyqM8yqZsyqmcyqzMyq/8zVAMzVM8zVZszVmczVzMzV/8z/AMz/M8z/Zsz/mcz/zMz///8AAP8AM/8AZv8Amf8AzP8A//8rAP8rM/8rZv8rmf8rzP8r//9VAP9VM/9VZv9Vmf9VzP9V//+AAP+AM/+AZv+Amf+AzP+A//+qAP+qM/+qZv+qmf+qzP+q///VAP/VM//VZv/Vmf/VzP/V////AP//M///Zv//mf//zP///wAAAAAAAAAAAAAAACH5BAEAAPwALAAAAAAUABQAAAhTAPcJHLgPgMGDBBMOPMgQocKCDSMaTCixIgCCFiUujIiRI0SHCht+BEkx48ONFU8KNKmS5cmMFx9yFCmT4UqPN2mOhBkzJ8+ePl2WTKkyKNCBAQEAOw==);
}
关于CSS - 将 2 个单选按钮变成 1 个开关,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18449299/
我已经阅读了这个答案https://stackoverflow.com/a/45486495/1108891 ,它演示了元组类型推断。经过一些实验,我遇到了这种情况。 当我们的 tuple 函数有 T
我想删除零, 我喜欢这个模型,如果我输入 1000 然后额外的表显示从 1 到 1000 的所有数字,每个数字都会检查并删除零。 示例:如果我输入 10然后输出如 1 2 3 .....8 9 1(1
鉴于我对PowerShell的了解仍在开发中,请与我一起提出任何建议/答案。 因此,在我工作的地方我们工作的公司拥有大量日文机器,需要注册Intune。但是,我们正在运行的脚本无法在其计算机上运行,
我刚刚制作了一个将路径保存到 INI 文件中的小程序。 但是在输出中,路径是这样写的: C:\\Windows 我想这样写: C:\Windows 我用 string.replace 尝试了很多方法,
所以我尝试 std::replace(diff_path.begin(), diff_path.end(), "\\", "/"); 但它似乎无法在我的 Visual Studio 上编译.怎么办 -
我使用以下代码每 30 秒自动抓取/设置最新的页面标题: setInterval(function() { var data = "http://mysite.com/mypage
我希望有两个 View 是组成集的一部分。每个 View 中的数据最好在 UITableView 中表示。然后,我想添加一个手势来使 View 在屏幕上闪烁,并引入另一个类似的 View ,并带有页面
我正在尝试开发一个小游戏,但我遇到了以下问题:我有一个伪类“Cannon”,每个 Cannon 都有一个存储它应该守卫的区域的数组和一个存储“入侵者”的数组进入其中一个戒备区。我创建了下一个函数作为
当我从应用程序中进行插入时,所有 ★(星号)都会变成“â…” 如何阻止这种情况发生? *如果我直接通过 phpmyadmin 插入它,它就可以工作,但使用这个 php 时则不行: connect_er
我遇到了一个奇怪的问题,将 NSDictionary 存储到 NSUserDefaults,然后检索它会将其转换为 NSCFString。 这是我保存数据的地方: - (void)saveProgre
我正在尝试像这样向 coinbase api 发出请求 $url = "https://api.gdax.com/products/BTC-USD/candles?start=".date($form
我在 HTTP header 中使用 if-modified-since 来决定是否应该下载文件。应用程序已经过测试,一切正常,但现在当我询问我的 NSHTTPURLResponse 实例 respo
我向串口发送0xFF 结果是 0x3F。 所有其他字节都是正确的。 情况是这样的…… 外部盒子将这些字节发送到 PC... 0xFF, 0x0D, 0x00, 0x30, 0x31, 0x53, 0x
所以我在我的 Next JS 应用程序中遇到了这个奇怪的问题,我导入了谷歌字体,如下所示 在我的浏览器中显示的不是 href,而是 data-href="...",所以问题是谷歌无法将此识别为链接
我试图通过将 QRect 变成 QPolygon 来检查 QPolygon 和 QRect 之间的碰撞。但是,矩形也可能有我添加的旋转,所以我想知道如何将 QRect 变成 QPolygon 并考虑到
我正在尝试写一个 Conduit使用 attoparsec解析器。具体来说,给定 parseOne :: Parser T , 我想构建一个 Conduit ByteString m T重复地将解析器
标记内的超链接
我正在尝试添加 和 所以实际的文字出现在我的页面上。不是链接。 所以我希望在我的页面上显示实际的 HTML,如下所示: 目前,出现了一个死图像...我想 单独阻止了这一点,只是显示了普通的html?
最近发现一些路由器设备包含后门,some of which可以通过单个UDP数据包加以利用。我意识到其中一些后门不一定是恶意的,因为我在自己的产品中也做了同样的事情以进行故障排除:打开套接字将心跳数据
我知道我可以将 iOS 设备变成 iBeacons ( Can an iOS7 device act as an iBeacon? )。不幸的是,我只有一台设备,我的信标还没有到达。所以我想知道如何将
有没有人尝试过将 MAC 变成 iBeacon。我已经为 iOS 设备完成了此操作,并且想要一个类似的带有一些 UI 的 MAC 独立应用程序。我听说 Mavericks 上的新 API 支持 iBe
我是一名优秀的程序员,十分优秀!