带时钟显示的时间选择器
代码语言:html
所属分类:表单美化
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body, html {
--color: #945;
--bgColor: #d89;
--size: 2rem;
--border: calc(var(--size) * 0.125);
--borderRadius: calc(var(--size) * 0.5);
--labelSize: calc(var(--size) * 0.75);
--margin: calc(var(--size) * 0.25);
--marginLeft: calc(var(--size) + calc(var(--size) * 0.5));
background: var(--bgColor);
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
height: 100%;
align-items: center;
justify-content: center;
font-family: helvetica, arial, sans-serif;
}
label {
color: var(--color);
font-size: var(--labelS.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0