博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS实现OFF-ON开关按钮
阅读量:5821 次
发布时间:2019-06-18

本文共 1349 字,大约阅读时间需要 4 分钟。

1.利用css实现开关按钮

效果图如下所示:

2.HTML代码

 

3.css代码
.testswitch {
    position: relative;
    float: left;
    width: 45px;
    margin: 0;
    font-size: 0.6em;
}
.testswitch-checkbox {
    display: none;
}
.testswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
}
.testswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
    text-align: left;
}
.testswitch-inner::before,
.testswitch-inner::after {
    display: block;
    float: right;
    width: 50%;
    height: 20px;
    padding: 0;
    line-height: 1.8em;
    font-size: 8px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}
.testswitch-inner::after {
    content: attr(data-on);
    padding-left: 10px;
    background-color: #FFAB47;
    color: #FFFFFF;
}
.testswitch-inner::before {
    content: attr(data-off);
    padding-right: 10px;
    background-color: #3F9FE8;
    color: white;
    text-align: right;
}
.testswitch-switch {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    margin: 4px;
    background: #FFFFFF;
    bottom: 5px;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
    text-align: right;
}
.testswitch-checkbox:checked+.testswitch-label .testswitch-inner {
    margin-left: 0;
}
.testswitch-checkbox:checked+.testswitch-label .testswitch-switch {
    right: 0px;
}
4.根据off和on的值不同做出不同的事件处理

 

转载于:https://www.cnblogs.com/zhengao/p/7365442.html

你可能感兴趣的文章
uva-317-找规律
查看>>
Event事件的兼容性(转)
查看>>
我的2014-相对奢侈的生活
查看>>
zoj 2412 dfs 求连通分量的个数
查看>>
Java设计模式
查看>>
一文读懂 AOP | 你想要的最全面 AOP 方法探讨
查看>>
Spring Cloud 微服务分布式链路跟踪 Sleuth 与 Zipkin
查看>>
ORM数据库框架 SQLite 常用数据库框架比较 MD
查看>>
华为OJ 名字美丽度
查看>>
微信公众号与APP微信第三方登录账号打通
查看>>
onchange()事件的应用
查看>>
Windows 下最佳的 C++ 开发的 IDE 是什么?
查看>>
软件工程师成长为架构师必备的十项技能
查看>>
python 异常
查看>>
百度账号注销
查看>>
mysql-This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME 错误解决
查看>>
BIEE Demo(RPD创建 + 分析 +仪表盘 )
查看>>
Cocos2dx 3.0开发环境的搭建--Eclipse建立在Android工程
查看>>
基本概念复习
查看>>
重构第10天:提取方法(Extract Method)
查看>>