checkbox多选
ps:中间的勾勾是iconfont,iOS风格的。
具体的HTML:
XML/HTML Code复制内容到剪贴板- <div class="mui-checkbox-con">
- <label>
- <input class="mui-checkbox" type="checkbox">默认未选中</label>
- </div>
- <div class="mui-checkbox-con">
- <label>
- <input class="mui-checkbox" type="checkbox" checked>默认选中</label>
- </div>
- <div class="mui-checkbox-con">
- <label>
- <input class="mui-checkbox checkbox-orange" type="checkbox" checked>橘黄色 checkbox-orange</label>
- </div>
- <div class="mui-checkbox-con">
- <label>
- <input class="mui-checkbox checkbox-green" type="checkbox" checked>绿色 checkbox-green</label>
- </div>
- <div class="mui-checkbox-con">
- <label>
- <input class="mui-checkbox" type="checkbox" disabled>禁用</label>
- </div>
CSS代码(SCSS导出的,排版有些奇怪):
CSS Code复制内容到剪贴板- .mui-checkbox {
- -webkit-appearance: none;
- position: relative;
- width: 25px;
- height: 25px;
- margin-right: 10px;
- background-color: #FFFFFF;
- border: solid 1px #d9d9d9;
- border-top-left-radius: 20px;
- border-top-rightright-radius: 20px;
- border-bottom-left-radius: 20px;
- border-bottom-rightright-radius: 20px;
- background-clip: padding-box;
- display: inline-block; }
- .mui-checkbox:focus {
- outline: 0 none;
- outline-offset: -2px; }
- .mui-checkbox:checked {
- background-color: #18b4ed;
- border: solid 1px #FFFFFF; }
- .mui-checkbox:checked:before {
- display: inline-block;
- margin-top: 1px;
- margin-left: 2px;
- font-family: iconfont;
- content: "\e667";
- color: #FFFFFF;
- font-size: 18px; }
- .mui-checkbox:disabled {
- background-color: #d9d9d9;
- border: solid 1px #d9d9d9; }
- .mui-checkbox:disabled:before {
- display: inline-block;
- margin-top: 1px;
- margin-left: 2px;
- font-family: iconfont;
- content: "\e667";
- color: #FFFFFF;
- font-size: 18px; }
- .mui-checkbox.checkbox-green:checked {
- background-color: #5cb85c; }
- .mui-checkbox.checkbox-orange:checked {
- background-color: #f0ad4e; }
- .mui-checkbox.checkbox-s {
- width: 19px;
- height: 19px; }
- .mui-checkbox.checkbox-s:before {
- display: inline-block;
- margin-top: 1px;
- margin-left: 2px;
- font-family: iconfont;
- content: "\e667";
- color: #FFFFFF;
- font-size: 13px; }
- .mui-checkbox-anim {
- -webkit-transition: background-color ease 0.2s;
- transition: background-color ease 0.2s; }
SCSS代码:
CSS Code复制内容到剪贴板- @mixin checkedCon($fs:18px) {
- &:before {
- display: inline-block;
- margin-top: 1px;
- margin-left: 2px;
- font-family: iconfont;
- content: "\e667";
- color: #FFFFFF;
- font-size: $fs;
- }
- }
- $duration: .4s;
- .mui-checkbox {
- -webkit-appearance: none;
- position: relative;
- width: 25px;
- height: 25px;
- margin-right: 10px;
- background-color: #FFFFFF;
- border: solid 1px #d9d9d9;
- border-top-left-radius: 20px;
- border-top-rightright-radius: 20px;
- border-bottom-left-radius: 20px;
- border-bottom-rightright-radius: 20px;
- background-clip: padding-box;
- display: inline-block;
- &:focus {
- outline: 0 none;
- outline-offset: -2px
- }
- &:checked {
- background-color: #18b4ed;
- border: solid 1px #FFFFFF;
- @include checkedCon();
- }
- &:disabled {
- background-color: #d9d9d9;
- border: solid 1px #d9d9d9;
- @include checkedCon();
- }
- &.checkbox-green:checked {
- background-color: #5cb85c;
- }
- &.checkbox-orange:checked {
- background-color: #f0ad4e;
- }
- &.checkbox-s {
- width: 19px;
- height: 19px;
- @include checkedCon(13px);
- }
- }
- .mui-checkbox-anim{
- //border等其他元素不做过渡效果,增加视觉差,更有动画效果
- transition: background-color ease $duration/2;
- }
带switch开关
本身我做这一个ui的目的是支持移动端的页面,而webkit上也正好支持单标记的input元素是使用伪类(:before或:after),所以我没做更多的支持和优化,我只是想尽量的保持html干净,所以没用其他元素做模拟。如果你要使用在桌面应用上,或支持其他浏览器,可以自己稍微修改一下,反正我是没测试过。
今天继续分享一个iOS风格的switch开关按钮,样子也非常常见,如图:
主要是使用了<input type="checkbox">来模拟实现,具体的HTML:
XML/HTML Code复制内容到剪贴板- <label><input class="mui-switch" type="checkbox"> 默认未选中</label>
- <label><input class="mui-switch" type="checkbox" checked> 默认选中</label>
- <label><input class="mui-switch mui-switch-animbg" type="checkbox"> 默认未选中,简单的背景过渡效果,加mui-switch-animbg类即可</label>
- <label><input class="mui-switch mui-switch-animbg" type="checkbox" checked> 默认选中</label>
- <label><input class="mui-switch mui-switch-anim" type="checkbox"> 默认未选中,过渡效果,加 mui-switch-anim
- 类即可</label>
- <label><input class="mui-switch mui-switch-anim" type="checkbox" checked> 默认选中</label>
在实际的使用中后来又增加了两个过渡效果,分别加 mui-switch-animbg和mui-switch-anim 类即可,具体效果查看下面的demo页面。
CSS代码(SCSS导出的,排版有些奇怪):
CSS Code复制内容到剪贴板- .mui-switch {
- width: 52px;
- height: 31px;
- position: relative;
- border: 1px solid #dfdfdf;
- background-color: #fdfdfd;
- box-shadow: #dfdfdf 0 0 0 0 inset;
- border-radius: 20px;
- border-top-left-radius: 20px;
- border-top-rightright-radius: 20px;
- border-bottom-left-radius: 20px;
- border-bottom-rightright-radius: 20px;
- background-clip: content-box;
- display: inline-block;
- -webkit-appearance: none;
- user-select: none;
- outline: none; }
- .mui-switch:before {
- content: '';
- width: 29px;
- height: 29px;
- position: absolute;
- top: 0px;
- left: 0;
- border-radius: 20px;
- border-top-left-radius: 20px;
- border-top-rightright-radius: 20px;
- border-bottom-left-radius: 20px;
- border-bottom-rightright-radius: 20px;
- background-color: #fff;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }
- .mui-switch:checked {
- border-color: #64bd63;
- box-shadow: #64bd63 0 0 0 16px inset;
- background-color: #64bd63; }
- .mui-switch:checked:before {
- left: 21px; }
- .mui-switch.mui-switch-animbg {
- transition: background-color ease 0.4s; }
- .mui-switch.mui-switch-animbg:before {
- transition: left 0.3s; }
- .mui-switch.mui-switch-animbg:checked {
- box-shadow: #dfdfdf 0 0 0 0 inset;
- background-color: #64bd63;
- transition: border-color 0.4s, background-color ease 0.4s; }
- .mui-switch.mui-switch-animbg:checked:before {
- transition: left 0.3s; }
- .mui-switch.mui-switch-anim {
- transition: border cubic-bezier(0, 0, 0, 1) 0.4s, box-shadow cubic-bezier(0, 0, 0, 1) 0.4s; }
- .mui-switch.mui-switch-anim:before {
- transition: left 0.3s; }
- .mui-switch.mui-switch-anim:checked {
- box-shadow: #64bd63 0 0 0 16px inset;
- background-color: #64bd63;
- transition: border ease 0.4s, box-shadow ease 0.4s, background-color ease 1.2s; }
- .mui-switch.mui-switch-anim:checked:before {
- transition: left 0.3s; }
- /*# sourceMappingURL=mui-switch.css.map */
SCSS代码:
CSS Code复制内容到剪贴板- @mixin borderRadius($radius:20px) {
- border-radius: $radius;
- border-top-left-radius: $radius;
- border-top-rightright-radius: $radius;
- border-bottom-left-radius: $radius;
- border-bottom-rightright-radius: $radius;
- }
- $duration: .4s;
- $checkedColor: #64bd63;
- .mui-switch {
- width: 52px;
- height: 31px;
- position: relative;
- border: 1px solid #dfdfdf;
- background-color: #fdfdfd;
- box-shadow: #dfdfdf 0 0 0 0 inset;
- @include borderRadius();
- background-clip: content-box;
- display: inline-block;
- -webkit-appearance: none;
- user-select: none;
- outline: none;
- &:before {
- content: '';
- width: 29px;
- height: 29px;
- position: absolute;
- top: 0px;
- left: 0;
- @include borderRadius();
- background-color: #fff;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
- }
- &:checked {
- border-color: $checkedColor;
- box-shadow: $checkedColor 0 0 0 16px inset;
- background-color: $checkedColor;
- &:before {
- left: 21px;
- }
- }
- &.mui-switch-animbg {
- transition: background-color ease $duration;
- &:before {
- transition: left 0.3s;
- }
- &:checked {
- box-shadow: #dfdfdf 0 0 0 0 inset;
- background-color: $checkedColor;
- transition: border-color $duration, background-color ease $duration;
- &:before {
- transition: left 0.3s;
- }
- }
- }
- &.mui-switch-anim {
- transition: border cubic-bezier(0, 0, 0, 1) $duration, box-shadow cubic-bezier(0, 0, 0, 1) $duration;
- &:before {
- transition: left 0.3s;
- }
- &:checked {
- box-shadow: $checkedColor 0 0 0 16px inset;
- background-color: $checkedColor;
- transition: border ease $duration, box-shadow ease $duration, background-color ease $duration*3;
- &:before {
- transition: left 0.3s;
- }
- }
- }
- }
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年11月19日
2024年11月19日
- 好薇2024《兵哥哥》1:124K黄金母盘[WAV+CUE]
- 胡歌.2006-珍惜(EP)【步升大风】【FLAC分轨】
- 洪荣宏.2014-拼乎自己看【华特】【WAV+CUE】
- 伊能静.1999-从脆弱到勇敢1987-1996精选2CD【华纳】【WAV+CUE】
- 刘亮鹭《汽车DJ玩主》[WAV+CUE][1.1G]
- 张杰《最接近天堂的地方》天娱传媒[WAV+CUE][1.1G]
- 群星《2022年度发烧天碟》无损黑胶碟 2CD[WAV+CUE][1.4G]
- 罗文1983-罗文甄妮-射雕英雄传(纯银AMCD)[WAV+CUE]
- 群星《亚洲故事香港纯弦》雨果UPMAGCD2024[低速原抓WAV+CUE]
- 群星《经典咏流传》限量1:1母盘直刻[低速原抓WAV+CUE]
- 庾澄庆1993《老实情歌》福茂唱片[WAV+CUE][1G]
- 许巍《在别处》美卡首版[WAV+CUE][1G]
- 林子祥《单手拍掌》华纳香港版[WAV+CUE][1G]
- 郑秀文.1997-我们的主题曲【华纳】【WAV+CUE】
- 群星.2001-生命因爱动听电影原创音乐AVCD【MEDIA】【WAV+CUE】