css+js实现桌面日历效果代码

代码语言:html

所属分类:布局界面

代码描述:css+js实现桌面日历效果代码

代码标签: 日历 效果

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            display: grid;
            width: 100%;
            min-height: 100vh;
            place-items: center;
            background-size: cover;
            background-position: center center;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            padding: 20px;
        }

        #calendar {
            width: 100%;
            max-width: 490px;
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            flex-direction: column;
            background-color: rgba(255,255,255,.9);
            border-radius: 5px;
            padding: 20px;
            gap: 5px;
        }
        #calendar .toprow {
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            flex-direction: row;
            -webkit-box-pack: justify;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        #calendar .days, #calendar #dates {
            display: grid;
            grid-template-columns: repeat(7, 1fr).........完整代码请登录后点击上方下载按钮下载查看

网友评论0