Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
下载代码
html
css
js
分享到微信朋友圈
X
html
Inbox
Today
Upcoming
Important
Meetings
Trash
Family
Vacation
Festival
Concerts
Today Tasks
All
Important
Notes
Links
Dashboard Design Implementation
Approved
Create a userflow
In Progress
Application Implementation
In Review
Create a Dashboard Design
In Progress
Create a Web Application Design
Approved
Interactive Design
In Review
Upcoming Tasks
Dashboard Design Implementation
Waiting
Create a userflow
Waiting
Application Implementation
Waiting
Create a Dashboard Design
Waiting
6
Schedule
08:00 - 09:00 AM
Product Review
10:00 - 11:00 AM
Design Meeting
01:00 - 02:00 PM
Team Meeting
03:00 - 04:00 PM
Release Event
08:00 - 09:00 PM
Release Event
11:00 - 12:00 PM
Practise
css
* { box-sizing: border-box; outline: none; } :root { --bg-color: #f5f8ff; --main-color: #353536; --secondary-color: #8e92a4; --main-text-color: #5d606b; --secondary-dark-color: #9496a5; --tag-color-one: #e0fbf6; --tag-color-text-one: #58c2a9; --tag-color-two: #ece7fe; --tag-color-text-two: #8972f3; --tag-color-three: #fde7ea; --tag-color-text-three: #e77f89; --tag-color-four: #f7f8fc; --tag-color-text-four: #a0a6b5; --checkbox-color: #009e90; --button-color: #49beb7; --box-color: #fff1d6; --box-color-2: #d3e6ff; --box-color-3: #ffd9d9; --box-color-4: #daffe5; --task-color: #777982; } .top-part .count, .top-part, .item, body { display: flex; align-items: center; } body { margin: 0; justify-content: center; flex-direction: column; overflow: auto; width: 100%; height: 100vh; padding: 20px; font-family: "DM Sans", sans-serif; font-size: 12px; background-image: linear-gradient(21deg, rgba(64, 83, 206, 0.3697003235) 68%, rgba(255, 206, 196, 0.5) 163%), linear-gradient(163deg, rgba(49, 146, 170, 0.0794448997) 86%, rgba(239, 112, 138, 0.5) 40%), linear-gradient(30deg, rgba(76, 79, 173, 0.6173675717) 22%, rgba(237, 106, 134, 0.5) 169%), linear-gradient(48deg, rgba(31, 85, 147, 0.7323890642) 64%, rgba(247, 126, 132, 0.5) 43%); background-blend-mode: overlay, multiply, color, normal; } ul { list-style-type: none; padding: 0; } button { border: none; background: none; cursor: pointer; } .task-manager { display: flex; justify-content: space-between; width: 100%; max-width: 1200px; height: 90vh; max-height: 900px; background: #fff; border-radius: 4px; box-shadow: 0 0.3px 2.2px rgba(0, 0, 0, 0.011), 0 0.7px 5.3px rgba(0, 0, 0, 0.016), 0 1.3px 10px rgba(0, 0, 0, 0.02), 0 2.2px 17.9px rgba(0, 0, 0, 0.024), 0 4.2px 33.4px rgba(0, 0, 0, 0.029), 0 10px 80px rgba(0, 0, 0, 0.04); overflow: hidden; } .left-bar { background-color: var(--bg-color); width: 230px; border-right: 1px solid #e3e7f7; position: relative; } .left-content { padding: 40px; } .item { color: var(--main-color); margin-bottom: 14px; font-weight: 500; } .item svg { width: 14px; height: 14px; color: currentcolor; margin-right: 10px; } .category-list { margin-top: 50px; } .category-list .item { color: var(--secondary-color); } .actions { padding: 12px; display: flex; justify-content: space-between; } .circle { border-radius: 50%; width: 10px; height: 10px; background-color: #fe4d46; box-shadow: 14px 0 0 0 #fbc023, 28px 0 0 0 #7dd21f; } .circle-2 { border-radius: 50%; width: 4px; height: 4px; background-color: #d5d7e3; box-shadow: -6px 0 0 0 #d5d7e3, 6px 0 0 0 #d5d7e3; } .right-bar { width: 320px; border-left: 1px solid #e3e7f7; display: flex; flex-direction: column; } .right-bar .header { font-size: 20px; color: var(--main-text-color); margin-left: 30px; } .top-part { padding: 30px; align-self: flex-end; } .top-part svg { width: 14px; height: 14px; color: var(--main-color); margin-right: 14px; } .top-part .count { font-size: 12px; border-radius: 50%; width: 24px; height: 24px; background-color: #623ce8; color: #fff; justify-content: center; } .right-content { padding: 10px 40px; overflow-y: auto; flex: 1; } .task-box { position: relative; border-radius: 12px; width: 100%; margin: 20px 0; padding: 16px; cursor: pointer; box-shadow: 2px 2px 4px 0px #ebebeb; } .task-box:hover { transform: scale(1.02); } .time { margin-bottom: 6px; opacity: 0.4; font-size: 10px; } .task-name { font-size: 14px; font-weight: 500; opacity: 0.6; } .yellow { background-color: var(--box-color); } .blue { background-color: var(--box-color-2); } .red { background-color: var(--box-color-3); } .green { background-color: var(--box-color-4); } .more-button { position: absolute; width: 3px; height: 3px; border-radius: 50%; background-color: #8e92a4; box-shadow: 0 -4px 0 0 #8e92a4, 0 4px 0 0 #8e92a4; opacity: 0.4; right: 20px; top: 30px; cursor: pointer; } .members { display: flex; margin-top: 14px; } .members img { border-radius: 50%; width: 30px; height: 30px; margin-right: 4px; object-fit: cover; } .page-content { display: flex; flex-direction: column; flex: 1; padding: 40px 20px 0 20px; } .page-content .header { font-size: 26px; color: var(--main-color); margin-top: 30px; } .content-categories { display: flex; justify-content: space-evenly; width: 100%; border-bottom: 1px solid #ddd; padding: 20px 0; } .nav-item { display: none; } .category { font-weight: 500; color: var(--secondary-color); border-bottom: 1px solid #ddd; transition: 0.4s ease-in; padding: 20px 30px; cursor: pointer; } #opt-1:checked + label, #opt-2:checked + label, #opt-3:checked + label, #opt-4:checked + label { color: var(--checkbox-color); border-bottom: 2px solid var(--checkbox-color); } .task-item { display: none; } .tasks-wrapper { padding: 30px 0; flex: 1; overflow-y: auto; height: 100%; padding-right: 8px; } .task { display: flex; justify-content: space-between; position: relative; margin-bottom: 16px; padding-left: 30px; color: var(--task-color); font-size: 13px; font-weight: 500; } .task:hover { transform: translatex(2px); } .task label { cursor: pointer; } label .label-text { position: relative; } label .label-text:before { content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid #ddd; border-radius: 2px; left: -24px; transition: 0.2s ease; } .task-item:checked + label .label-text:before { background-color: var(--checkbox-color); border: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: 10px; background-position: center; border: 1px solid var(--checkbox-color); } .tag { font-size: 10px; padding: 4px 8px; border-radius: 20px; } .tag.approved { background-color: var(--tag-color-one); color: var(--tag-color-text-one); } .tag.progress { background-color: var(--tag-color-two); color: var(--tag-color-text-two); } .tag.review { background-color: var(--tag-color-three); color: var(--tag-color-text-three); } .tag.waiting { background-color: var(--tag-color-four); color: var(--tag-color-text-four); } .upcoming { border-bottom: 1px solid #ddd; padding-bottom: 30px; margin-bottom: 30px; } @media screen and (max-width: 900px) { .left-bar { display: none; } } @media screen and (max-width: 700px) { .task-manager { flex-direction: column; overflow-y: auto; } .right-bar, .page-content { width: 100%; display: block; } .tasks-wrapper { height: auto; } } @media screen and (max-width: 520px) { .page-content { padding: 40px 10px 0 10px; } .right-content { padding: 10px 16px; } .category { padding: 20px; } }
JavaScript
粒子
时间
文字
hover
canvas
3d
游戏
音乐
火焰
水波
轮播图
鼠标跟随
动画
css
加载动画
导航
菜单
按钮
滑块
tab
弹出层
统计图
svg
×
Close
在线代码下载提示
开通在线代码永久免费下载,需支付20jQ币
开通后,在线代码模块中所有代码可终身免费下!
您已开通在线代码永久免费下载,关闭提示框后,点下载代码可直接下载!
您已经开通过在线代码永久免费下载
对不起,您的jQ币不足!可通过发布资源 或
直接充值获取jQ币
取消
开通下载
<!doctype html> <html> <head> <meta charset="utf-8"> <title>用户任务管理UI界面-jq22.com</title> <script src="https://www.jq22.com/jquery/jquery-1.10.2.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号