bulma-calenda实现一个时间日期范围选择器效果代码
代码语言:html
所属分类:选择器
代码描述:bulma-calenda实现一个时间日期范围选择器效果代码
代码标签: bulma calenda 时间 日期 范围 选择器
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bulma.min.css"> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bulma-calendar.css"> <style> .container { margin: 150px auto; } h1 { font-size: 2rem; } h2 { font-size: 1.5rem; margin: 2rem auto; } </style> </head> <body> <div class="container"> <h2>Basic Date Picker</h2> <input type="date" class="demo1" id="demo"> <h2>Basic Time Picker</h2> <input type="time" class="demo2"> <h2>Basic Date Time Picker</h2> <input type="datetime" class="demo3"> <h2>Basic Date Range Picker</h2> <input type="daterange" class=&qu.........完整代码请登录后点击上方下载按钮下载查看
网友评论0