jquery-ui实现一个简单的待办事项ui效果代码
代码语言:html
所属分类:布局界面
代码描述:jquery-ui实现一个简单的待办事项ui效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/jquery-ui-1.11.0.min.css"> <style> body{ background: #1abc9c; font-family: sans-serif; } h1{ color: #fff; text-align: center; font-size: 40px; font-weight: 100; } ul{ list-style: none; margin: 0; padding: 0; } .steps{ width: 300px; height: 405px; position: absolute; top: 15%; left: 0px; right: 0px; margin: 0px auto; } input[type=checkbox] { display: none; } .ui-sortable-placeholder{ border: 1px dotted #fff; padding: 30px 20px; position: relative; } .ui-sortable-placeholder:after{ content: "Place me here. Pretty Please :3"; position: absolute; top: 30%; left: 0; right: 0; margin: auto; color: #fff; text-align: center; } label{ background: #34495E; height: 69px; width: 100%; display: block; border-bottom: 1px solid #2C3E50; color: #fff; text-transform: capitalize; font-weight: 900; font-size: 11px; letter-spacing: 1px; cursor: pointer; transition: all 0.7s ease; position: relative; padding: 5px 5px 5px 70px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } label h2 span{ display: block; font-size: 12px; text-transform: capitalize; font-weight: normal; color: #bdc3c7; } label:before{ content:""; width: 19px; height: 19px; border: 1px solid #416282; display: block; position: absolute; border-radius: 100%; left: 20px; top: 30%; transition: border 0.7s ease; z-index: 9999; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0