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 { width: 2.5rem; height: 2.3rem; } .plan-finish-calendar { position: absolute; top: 3rem; left: 50%; transform: translateX(-50%); font-size: 0.24rem; padding: 0 0.3rem; } .plan-finish-btns{ width: 100%; padding: .8rem 0.3rem; display: flex; justify-content: space-between; align-items: center; } .plan-finish-btns li{ width:3rem; height:0.84rem; background:rgba(21,188,195,0.11); border-radius:0.42rem; display: flex; justify-content: center; align-items: center; font-size: 0.32rem; color: #15BCC3; } .plan-finish-btns li:last-child{ background: #15BCC3; color: #fff; } /* 日历 */ .calendar { min-height: 5rem; background: #fff; box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.1); border-radius: 0.2rem; overflow: hidden; font-size: 0.24rem; padding: 0 0.3rem; } .calendar .month { background: #ffffff; padding: 0.3rem; display: flex; justify-content: space-between; align-items: center; white-space: nowrap; } .calendar .month li { text-transform: uppercase; letter-spacing: 0; } .calendar .month .arrow { color: #333; width: 2rem; font-size: 0.24rem; display: flex; justify-content: center; align-i.........完整代码请登录后点击上方下载按钮下载查看
网友评论0