css开关按钮网站推荐
时间: 2023-11-07 08:03:04 浏览: 241
推荐一些CSS开关按钮网站:
1. CodePen(https://codepen.io/):CodePen是一个代码分享平台,你可以在上面搜索和浏览其他用户分享的开关按钮样式。
2. CSS Checkbox(https://csscheckbox.com/):CSS Checkbox是一个专门提供CSS开关按钮样式的网站,你可以在上面找到各种不同风格和设计的开关按钮。
3. CSS Switch(https://www.cssswitch.com/):CSS Switch也是一个提供多种开关按钮样式的网站,你可以在上面浏览和选择适合你需求的按钮样式。
相关问题
css开关按钮样式
可以使用以下 CSS 样式实现开关按钮:
HTML 代码:
```html
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
```
CSS 样式:
```css
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
display: none;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
border-radius: 50%;
}
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);
}
```
这个样式会生成一个类似于 iOS 开关按钮的样式,可以根据自己的需求进行修改。
html css开关按钮样式
下面是一个基本的 HTML/CSS 开关按钮样式,你可以根据自己的需求进行修改。
HTML 代码:
```
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
```
CSS 代码:
```
/* 开关按钮容器样式 */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
/* 开关按钮输入框样式 */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* 开关按钮圆形样式 */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
border-radius: 34px;
}
/* 开关按钮圆形滑块样式 */
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
border-radius: 50%;
}
/* 开关按钮选中状态样式 */
input:checked + .slider {
background-color: #2196F3;
}
/* 开关按钮选中状态圆形滑块样式 */
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
```
可以将上面的代码复制粘贴到你的 HTML 和 CSS 文件中,并根据需要进行修改和优化。
阅读全文