每日CSS_仿苹果平滑开关按钮
每日CSS_仿苹果平滑开关按钮
2020_12_24
1. 代码解析
1.1 html 代码解析
<div class="checkbox">
<div class="inner" id="inner">
<div class="toggle" id="toggle"></div>
</div>
</div>
最外层 checkbox, 是按钮的整体, inner 是ON下绿色框所占的区域, toggle 是能点击的 ON 和 OFF 区域.
1.2 css 代码解析
- 设置 body 字体和背景色
body{
margin: 0;
padding: 0;
font-family: sans-serif;
background: #dcdcdc;
}
- 设置按钮的背景色, 位置, 圆形边框, 上下边框颜色和厚度
.checkbox{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 50px;
border-radius: 25px;
background: linear-gradient(0deg, #d8d8d8, #cccccc);
border-top: 0.02em solid #ececec;
border-bottom: 0.02em solid #ececec;
}
设置 绿色底色区域 的上下左右位置, 以此确定宽度和高度, 注意, 这里没设宽度和高度, 默认是 auto
设置背景, 圆形边框, 阴影
.checkbox .inner{
position: absolute;
/* 因为没设宽和高, 所以可以这样 */
top: 10px;
left: 10px;
right: 10px;
bottom: 10px;
background: linear-gradient(0deg, #a5a5a5, #717171);
border-radius: 20px;
box-shadow: inset 0 0 15px rgba(0,0,0,.5);
}
- 设置 ON OFF 按钮大小, 位置, 颜色, 背景, 阴影, 顶部和底部边框样式, 设置按钮上的动画时间为 0.5s
.checkbox .inner .toggle{
position: absolute;
top: -3px;
left: -3px;
width: 36px;
height: 36px;
border-radius: 50%;
background: linear-gradient(0deg, #ccc, #e4e4e4);
box-shadow: 0 4px 6px rgba(0,0,0,.2);
box-sizing: border-box;
border-top: 0.04em solid #ececec;
border-bottom: 0.01em solid #ececec;
transition: 0.5s;
}
- 设置 OFF 的样式,, 由上下左右的定位确定 宽和高, 设置背景, 圆形边框,
line-height
用来设置字体垂直居中
.checkbox .inner .toggle:before{
content: "OFF";
position: absolute;
top: 4px;
left: 4px;
right: 4px;
bottom: 4px;
background: linear-gradient(0deg, #e4e4e4, #ccc);
border-radius: 50%;
text-align: center;
font-size: 10px;
line-height: 28px;
color: #a9a9a9;
}
- 设置 点击后按钮的字体, ON, 之所有没有写其他属性, 是因为其他属性都继承
checkbox .inner .toggle:before
.checkbox .inner.active .toggle:before{
content: "ON";
color: #00d22d;
}
- 当按钮被点击, 滑块右移, 并且更改背景色, 更改时间为 0.5s
.checkbox .inner.active .toggle{
left: 47px;
}
.checkbox .inner.active{
background: linear-gradient(0deg, #00d22d, #158a00);
}
1.3 javascript 代码解析
<script>
let inner = document.getElementById('inner');
let toggle = inner.children[0];
toggle.addEventListener('click', ()=>{
if(inner.classList.contains('active')){
inner.classList.remove('active');
}else {
inner.classList.add('active');
}
})
</script>
- 首先获取到 inner 和 toggle, 一个背景色框, 一个圆形按钮
- 给按钮 toggle 注册点击事件, 点击 ON OFF 按钮才有效
- 当 inner 处于 active, 也就是 inner 元素包含 active 类, 那就移除, 如果不包含, 那就添加, 反正做一个相反的操作
- 当 inner 处于 active, toggle 会右移, inner 背景色会变换, 在 css中 设置
- 大功告成, 过程如下图
2. 源码
2.1 html 源码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="2020_12_24.css">
</head>
<body>
<div class="checkbox">
<div class="inner" id="inner">
<div class="toggle" id="toggle"></div>
</div>
</div>
<script>
let inner = document.getElementById('inner');
let toggle = inner.children[0];
toggle.addEventListener('click', ()=>{
if(inner.classList.contains('active')){
inner.classList.remove('active');
}else {
inner.classList.add('active');
}
})
</script>
</body>
</html>
2.2 css 源码
body{
margin: 0;
padding: 0;
font-family: sans-serif;
background: #dcdcdc;
}
.checkbox{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 50px;
border-radius: 25px;
background: linear-gradient(0deg, #d8d8d8, #cccccc);
border-top: 0.02em solid #ececec;
border-bottom: 0.02em solid #ececec;
}
.checkbox .inner{
position: absolute;
/* 因为没设宽和高, 所以可以这样 */
top: 10px;
left: 10px;
right: 10px;
bottom: 10px;
background: linear-gradient(0deg, #a5a5a5, #717171);
border-radius: 20px;
box-shadow: inset 0 0 15px rgba(0,0,0,.5);
}
.checkbox .inner .toggle{
position: absolute;
top: -3px;
left: -3px;
width: 36px;
height: 36px;
border-radius: 50%;
background: linear-gradient(0deg, #ccc, #e4e4e4);
box-shadow: 0 4px 6px rgba(0,0,0,.2);
box-sizing: border-box;
border-top: 0.04em solid #ececec;
border-bottom: 0.01em solid #ececec;
transition: 0.5s;
}
.checkbox .inner .toggle:before{
content: "OFF";
position: absolute;
top: 4px;
left: 4px;
right: 4px;
bottom: 4px;
background: linear-gradient(0deg, #e4e4e4, #ccc);
border-radius: 50%;
text-align: center;
font-size: 10px;
line-height: 28px;
color: #a9a9a9;
}
.checkbox .inner.active .toggle:before{
content: "ON";
color: #00d22d;
}
.checkbox .inner.active .toggle{
left: 47px;
}
.checkbox .inner.active{
background: linear-gradient(0deg, #00d22d, #158a00);
}
每日CSS_仿苹果平滑开关按钮的更多相关文章
- 8个超炫酷仿苹果应用的HTML5动画
苹果的产品一直以精美的UI著称,无论是软件应用还是硬件设备.本文主要分享了8个很不错的HTML5动画应用,这些动画正式模仿了苹果的各类应用,有焦点图.钟表.菜单等HTML5应用和jQuery插件,大家 ...
- 一款基于的jQuery仿苹果样式焦点图插件
这次我们要分享的这款jQuery焦点图非常特别,它的外观特别简单,但是又相当大气.焦点图的整体样式是仿苹果样式的,由于jQuery的运用,我们只要点击图片下方的缩略图即可达到图片切换的焦点图特效,这款 ...
- 仿苹果系统应用的apk
仿苹果系统应用的apk 韩梦飞沙 韩亚飞 313134555@qq.com yue31313 han_meng_fei_sha 收集了好久的仿苹果IOS7全套apk - Android安卓综合 ...
- 仿苹果电脑任务栏菜单&&拼图小游戏&&模拟表单控件
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- 每日CSS_霓虹灯按钮悬停效果
每日CSS_霓虹灯按钮悬停效果 2020_12_20 1. 代码解析 1.1 html 代码片段解析 <a href="#"> <span></spa ...
- 每日CSS_实时时钟效果
每日CSS_实时时钟效果 2020_12_22 源码链接 1. 代码解析 1.1 html 代码片段 <div class="clock"> <div class ...
- 每日CSS_发光文本效果
每日CSS_发光文本效果 2020_12_22 源码 1. 代码解析 1.1 html 代码片段 <h1> <span>今</span> <span>天 ...
- 每日CSS_纯CSS制作进度条
每日CSS_纯CSS制作进度条 2020_12_26 源码 1. 代码解析 1.1 html 代码解析 设置整个容器 <div class="container"> . ...
- 每日CSS_滚动页面动画效果
每日CSS_滚动页面动画效果 2021_1_13 源码链接 1. 代码解析 1.1 html 代码片段 <section> <h2>开 始 滑 动</h2> < ...
随机推荐
- iOS 搜索条使用详解
在ios开发中搜索条的使用挺常见的,不过之前一直没用到也没细细研究,最近做外包项目的时候刚好用到,在这里记录一下使用的过程,只要理解了原理,其实还是比较简单的!上传的图片有点大,刚好可以看清楚它的使用 ...
- P6631 [ZJOI2020] 序列
可以将问题用形象的方式来表述.给定一排点,第 \(i\) 个点有它需要的覆盖次数 \(a_i\).有两种线段,一种能覆盖连续的一些点,称其为连续线段:另一种能覆盖相邻间隔为 \(1\) 的一些点,称其 ...
- 【GDOI2014模拟】JZOJ2020年8月14日T2 网格
[GDOI2014模拟]JZOJ2020年8月14日T2 网格 题目 Time and Memory Limits Description 某城市的街道呈网格状,左下角坐标为A(0, 0),右上角坐标 ...
- flask基本使用
一.flask安装以及启动 1.安装 pip install flask 2.开启第一个flask项目 新建文件HelloWord.py from flask import Flask app = F ...
- 在执行gem install redis时 : ERROR: Error installing redis: redis requires Ruby version >= 2.2.2
在执行gem install redis时 提示: gem install redis ERROR: Error installing redis: redis requires Ruby versi ...
- 老猿Python重难点知识博文汇总
老猿Python博文目录 专栏:使用PyQt开发图形界面Python应用 老猿Python博客地址 除了相关教程外,老猿在学习过程中还写了大量的学习随笔,内容比较杂,文章内容也参差不齐,为了方便,老猿 ...
- PyQt(Python+Qt)学习随笔:QListView的movement属性
老猿Python博文目录 老猿Python博客地址 QListView的movement属性用于控制在视图中怎么移动数据项,其类型为枚举类型QListView.Movement,有如下取值: Stat ...
- 终于不再对transition和animation,傻傻分不清楚了 --vue中使用transition和animation
以前写页面注重在功能上,对于transition和animation是只闻其声,不见其人,对于页面动画效果心理一直痒痒的.最近做活动页面,要求页面比较酷炫,终于有机会认真了解了. transition ...
- Linux相关知识基础
目录 前言 第一章 Linux远程连接管理 1. 为什么要远程连接Linux系统 2. 连接前的小知识 2.2.1 IP地址 2.2.2 端口的概念 2.2.3 协议的概念 3. 远程连接Linux的 ...
- 【Django admin 中文配置】
打开settings.py文件,找到语言编码.时区的设置项,将内容改为如下: [其中 zh-Hans是简体中文 zh-Hant是繁体中文] LANGUAGE_CODE = 'zh-Hans' # LA ...