vue实现移动端手机端签到日历待办事项工作进度效果代码

代码语言:html

所属分类:布局界面

代码描述:vue实现移动端手机端签到日历待办事项工作进度效果代码

代码标签: 手机 签到 日历 待办 事项 工作 进度 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
		<meta http-equiv="X-UA-Compatible" content="ie=edge">
		<title>签到日历</title>   

<style>
    body,
html {
	background-color: #F6F6F6;
	padding: 0;
	margin: 0;
}

.plan-finish-header {
	position: relative;
	width: 100%;
	height: 4.8rem;
}

.plan-finish-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4.8rem;
	background: linear-gradient(135deg, rgba(5, 201, 221, 1) 0%, rgba(23, 196, 160, 1) 100%);
}

.plan-finish-bg::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.2rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.plan-finish-bg::after {
	content: '';
	position: absolute;
	bottom: -.5rem;
	left: 0.2rem;
	width: 7.1rem;
	height: .9rem;
	background: rgba(170, 233, 221, 1);
	border-radius: 1px;
	opacity: 0.5;
	filter: blur(24px);
}

.plan-finish-head {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0.3rem;
	color: #fff;
}

.plan-finish-info {
	flex: 1;
	padding-top: 0.2rem;
}

.plan-finish-tit {
	width: 100%;
	text-align: center;
	font-size: 0.44rem;
}

.plan-finish-info ul {
	padding-top: 0.3rem;
	display: flex;
	font-size: 0.24rem;
}

.plan-finish-info ul li {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.plan-nums {
	padding-top: 0.1rem;
	font-size: 0.48rem;
}

.plan-finish-ico {.........完整代码请登录后点击上方下载按钮下载查看

网友评论0