jquery营业时间选择器效果

代码语言:html

所属分类:选择器

代码描述:jquery营业时间选择器效果

代码标签: 选择器 效果

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

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>一周内时间区间选择</title>

<style>
    * {
	margin: 0;
	padding: 0;
	list-style: none;
}

#data {
	width: 750px;
	border: 1px solid #ccc;
	background-color: white;
}

#data #data_top {
	display: flex;
	justify-content: flex-end;
	padding: 15px 20px;
}

#data #data_top dd {
	width: 15px;
	height: 15px;
	background-color: #c0e2fd;
	margin-right: 10px;
}

#data #data_top dl:nth-child(2) dd {
	background-color: white;
	border: 1px solid #ccc;
	margin-left: 50px;
}

#data #data_top dl {
	display: flex;
	align-items: center;
}

#data #data_top dt {
	font-size: 13px;
	color: #999;
}

#d.........完整代码请登录后点击上方下载按钮下载查看

网友评论0