单选按钮或图像?

问题描述 投票:0回答:2

我正在开发一个React应用程序。

我有这个要求,以显示与iPhone设置类似的开关。

我能够基于打开/关闭状态使用两个图像并显示它。

使用输入类型=复选框创建组件更好吗?

javascript reactjs
2个回答
1
投票

/* The switch - the box around the slider */ .switch { position: relative; display: inline-block; width: 60px; height: 34px; } /* Hide default HTML checkbox */ .switch input { opacity: 0; width: 0; height: 0; } /* The slider */ .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; -webkit-transition: .4s; transition: .4s; } input:checked + .slider { background-color: #2196F3; } input:focus + .slider { box-shadow: 0 0 1px #2196F3; } input:checked + .slider:before { -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); } /* Rounded sliders */ .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; }
<!-- Rounded switch --> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label>
我从这里拿走它:w3schools
[edit]看起来更像iPhone开关的那个

.form-switch { display: inline-block; cursor: pointer; -webkit-tap-highlight-color: transparent; } .form-switch i { position: relative; display: inline-block; margin-right: .5rem; width: 46px; height: 26px; background-color: #e6e6e6; border-radius: 23px; vertical-align: text-bottom; transition: all 0.3s linear; } .form-switch i::before { content: ""; position: absolute; left: 0; width: 42px; height: 22px; background-color: #fff; border-radius: 11px; transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1); transition: all 0.25s linear; } .form-switch i::after { content: ""; position: absolute; left: 0; width: 22px; height: 22px; background-color: #fff; border-radius: 11px; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24); transform: translate3d(2px, 2px, 0); transition: all 0.2s ease-in-out; } .form-switch:active i::after { width: 28px; transform: translate3d(2px, 2px, 0); } .form-switch:active input:checked + i::after { transform: translate3d(16px, 2px, 0); } .form-switch input { display: none; } .form-switch input:checked + i { background-color: #4BD763; } .form-switch input:checked + i::before { transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0); } .form-switch input:checked + i::after { transform: translate3d(22px, 2px, 0); }
<label class="form-switch"> <input type="checkbox"> <i></i> Select Me </label>
来源:cssscript    

0
投票
© www.soinside.com 2019 - 2024. All rights reserved.