前几天我经理突然跟我说,能不能做一个开关按钮,需要过滤的一个标识。说实话,一个做后端我是懵逼状态的。

不过网上资料很多,查了一遭,发现一个不错的哥们给出的案例,模仿一下成功实现,下面就自己总结一下:

实现的效果如上,个人觉得丑爆了。

下面是实现过程:

HTML部分代码:
<div class="testswitch">
<input class="testswitch-checkbox" id="onoffswitch" type="checkbox">
<label for="onoffswitch" class="testswitch-label">
<span class="testswitch-inner" data-on="YES" data-off="NO"></span>
<span class="testswitch-switch"></span>
</label>
</div>
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;
}
Jquery部分代码:
referrer="NO";
$(document).ready(function () {
$("#onoffswitch").on("click",function () {
clickSwitch();
});
var clickSwitch=function () {
if($("#onoffswitch").is(":checked")){
console.log("YES");
referrer="YES";
$('.sp-start').css('display','none');
$('.sp-close').css('display','block');
}else {
console.log("NO");
referrer="NO";
$('.sp-close').css('display','none');
$('.sp-start').css('display','block');
}
}
});

最新文章

  1. .NET正则表达式基础入门
  2. 01shell入门基础
  3. 学习Node.js笔记(一)
  4. iOS 9之适配ATS(转载)
  5. HTML---总结
  6. LoadRunner - 当DiscuzNT遇上了Loadrunner(下) (转发)
  7. Android实用代码七段(一)
  8. Delphi自定义消息应用及delphi托盘实现
  9. 武汉科技大学ACM:1005: 单位转换
  10. 浏览器 窗口 scrollTop 的兼容性问题
  11. (二十八)monggodb和maven零散笔记
  12. 你考虑清楚了吗就决定用 Bootstrap ?
  13. 导航控制器&amp;nbsp;UI_08(上)
  14. 深入理解Spring Redis的使用 (三)、使用RedisTemplate的操作类访问Redis
  15. SDL 开发实战(一):SDL介绍及开发环境配置
  16. Ios还是安卓的判断
  17. springboot + websocket + spring-messaging实现服务器向浏览器广播式
  18. Java 实现字符串的加密与解密
  19. Sql Server中的表访问方式Table Scan, Index Scan, Index Seek
  20. HDU 1074 Doing Homework 状压dp(第一道入门题)

热门文章

  1. poj3107(树的重心,树形dp)
  2. String类基础的那些事!
  3. vue中的axios.post使用json数据传输,出现请求头字段内容类型是不被允许的情况的解决方案
  4. - RabbitMQ - 0 - 介绍、linux 和windows安装
  5. 深入理解C++11 C3
  6. 网络流Dinic--模板
  7. 基于MFC对话框的2048游戏
  8. [JZOJ4307]喝喝喝--枚举
  9. javaIO——PipedReader &amp; PipedWriter
  10. spring利用xml配置定时任务