个人博客网站前端页面的实现

news2024/9/23 3:31:11

博客网站前端页面的实现

博客登录页

相关代码

login.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>博客登录页</title>
    <link rel="stylesheet" href="../css/commom.css">
    <link rel="stylesheet" href="../css/login.css">
</head>
<body>
      <div class="nav">
        <img src="../img/logo.png" alt="图片没加载出来">
        <span>我的博客系统</span>
        <span class="space"></span>
        <div>
            <a href="blog_list.html">主页</a>
            <a href="blog_edit.html">写博客</a>
            <a href="http://www.baidu.com/">注销</a>
        </div>
    </div>
    <div class="login_container">
        <!-- 登录页面 -->
        <div class="login_dialog">
            <h3>登录</h3>
            <div class="row">
                <span>用户名</span>
                <input class="username" type="text">
            </div>
            <div class="row">
                <span>密码</span>
                <input class="password" type="password">
            </div>
            <div class="row">
               <button>提交</button> 
            </div>
        </div>
    </div>
    
</body>
</html>

login.css

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.login_container {
    height: calc(100% - 50px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login_dialog {
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
}
h3 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 25px;
}
.row {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.row span {
    font-size: 20px;
    width: 90px;
}
.row input {
    height: 40px;
    width: 240px;
    font-size: 20px;
    border-radius: 9px;
    border: none;
}
.row button {
    background-color: #a3dff1;
    width: 330px;
    height: 40px;
    border-radius: 8px;
    border:none;
}




页面实现效果

Snipaste_2024-03-11_17-11-56




博客列表页

相关代码

blog_list.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>博客列表页</title>
    <link rel="stylesheet" href="../css/commom.css">
</head>
<body>
    <div class="nav">
        <img src="../img/logo.png" alt="图片没加载出来">
        <span>我的博客系统</span>
        <span class="space"></span>
        <div>
            <a href="blog_list.html">主页</a>
            <a href="blog_edit.html">写博客</a>
            <a href="http://www.baidu.com/">注销</a>
        </div>
    </div>

    <div class="container">
        <div class="container-left">
            <!-- 个人信息 -->
            <div class="card">
                <img src="../img/touxiang.jpg" alt="图片没加载出来">
                <h3>姐姐</h3>
                <a href="https://gitee.com/liao-feiyangsss">github地址</a>
                <div class="counter">
                    <span>文章</span>
                    <span>分类</span>
                </div>
                <div class="counter">
                    <span>1</span>
                    <span>2</span>
                </div>
            </div>
        </div>
        <div class="container-right">
            <!-- 博客列表 -->
            <div class="blog">
                <div class="title">
                   这是第一篇博客 
                </div>
                <div class="date">
                    2024-03-11
                </div>
                <div class="desc">
                    <p>
                        山风微微,像月光下晃动的海浪,温和而柔软,停留在时光的背后,变成小时候听过的故事。在遥远的城市,陌生的地方,有他未曾见过的山和海
                    </p>
                </div>
                <a class="detail" href="blog_content.html?blogId=5">查看全文&gt;&gt;</a>
            </div>
           

            <div class="blog">
                <div class="title">
                   这是第二篇博客 
                </div>
                <div class="date">
                    2024-03-13
                </div>
                <div class="desc">
                    <p>生活中,不需要太多的刻意,一切顺其自然,或许是最好的结果……如果有一天,你看见整天都在疯狂的人,那绝不是我。因为做一个快乐简单的人,一生简单快乐!</p>
                </div>
                <a class="detail" href="blog_content.html?blogId=2">查看全文&gt;&gt;</a>
            </div>
          
            <div class="blog">
                <div class="title">
                   这是第三篇博客 
                </div>
                <div class="date">
                    2024-03-15
                </div>
                <div class="desc">
                    <p>太阳冉冉升起,清风柔柔吹起。花儿伸伸懒腰,喜鹊唧唧鸣唱。当你睁开眼睛时,世界的美好送给你。清扬的闹铃响起时,我美好的祝福呈现给你。</p>
                </div>
                <a class="detail" href="blog_content.html?blogId=3">查看全文&gt;&gt;</a>
            </div>

            <div class="blog">
                <div class="title">
                   这是第四篇博客 
                </div>
                <div class="date">
                    2024-03-17
                </div>
                <div class="desc">
                    <p>如果你认为自己会被击倒,你就会被击倒。如果你认为自己没有希望,你就会没有希望。如果你对自己的生活持消极态度,你的生活就真的会变得很消极。如果你积极对待生活,你就会发现,生活是如此美好。</p>
                </div>
                <a class="detail" href="blog_content.html?blogId=4">查看全文&gt;&gt;</a>
            </div>

            <div class="blog">
                <div class="title">
                   这是第五篇博客 
                </div>
                <div class="date">
                    2024-03-19
                </div>
                <div class="desc">
                    <p>每个人都有自己的幸福,仰望别人的幸福时,别人也在仰望你的幸福。难得糊涂,容易幸福;知足常乐,更容易获得幸福。幸福需要感觉,感觉幸福就是幸福。我们拼命地追求幸福,因为幸福就在身边;我们设高的要求,因为我们害怕失望。</p>
                </div>
                <a class="detail" href="blog_content.html?blogId=5">查看全文&gt;&gt;</a>
            </div>

            <div class="blog">
                <div class="title">
                   这是第六篇博客 
                </div>
                <div class="date">
                    2024-03-21
                </div>
                <div class="desc">
                    <p>
                        如果难过,就努力抬头望天空吧,望着望着就忘了……它那么大,一定可以包容你的所有委屈。
                    </p>
                </div>
                <a class="detail" href="blog_content.html?blogId=5">查看全文&gt;&gt;</a>
            </div>

            <div class="blog">
                <div class="title">
                   这是第七篇博客 
                </div>
                <div class="date">
                    2024-03-23
                </div>
                <div class="desc">
                    <p>
                        记忆像是倒在掌心的水,不论你摊开还是紧握,终究还是会从指缝中一滴一滴流淌干净
                    </p>
                </div>
                <a class="detail" href="blog_content.html?blogId=5">查看全文&gt;&gt;</a>

            </div>
            <div class="blog">
                <div class="title">
                   这是第八篇博客 
                </div>
                <div class="date">
                    2024-03-25
                </div>
                <div class="desc">
                    <p>人生就像一座山,重要的不是它的高低,而在于灵秀;人生就像一场雨,重要的不是它的大小,而在于及时。</p>
                </div>
                <a class="detail" href="blog_content.html?blogId=1">查看全文&gt;&gt;</a>
            </div>

        </div>
    </div>
</body>
</html>

common.css

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html,body {
    height: 100%;
    width: 100%;
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.nav {
    width: 100%;
    height: 60px;
    background-color:  gray;
    display: flex;
    justify-content: left;
    align-items: center;
    color: white;
}
.nav img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* margin-top: 4px; */
    margin-left: 4px;
    margin-right: 8px;
}


.nav .space {
    width: 75%;
}


.nav a {
    color: white;
    text-decoration: none;
    /* margin-left: 10px; */
    margin-right: 15px;
}
.nav div {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 15%;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: calc(100% - 50px);
    width: 100%;
}

.container .container-left {
    height: 100%;
    width: 30%;
    background-color: rgba(255,255,255,0.8);
}

.container .container-right {
    height: 100%;
    width: 70%;
    background-color: rgba(255,255,255,0.8);
    overflow: auto;
}
.card {
    margin-top: 10px;
    width: 60%;
    height: 44%;
    background-color: rgba(255,255,255,0.8);
    margin-left: 200px;
    margin-right: 10px;
    border-radius: 15px;
}
.card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-left: 90px;
    margin-top: 35px;
}
.card h3 {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 8px;
}
.card a {
    display: block;
    text-align: center;
    color: grey;
    text-decoration: none;
    margin-bottom: 20px;
}
.card .counter {
    display: flex;
    justify-content: space-around;
    margin-top: 22px;
}

.blog {
    width: 100%;
    background-color:rgba(255,255,255,0.8);
    border-radius: 15px;
    margin-top: 12px;
}

.blog .title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding-top: 20px;
}
.blog .date {
    color: rgb(47, 213, 255);
    padding-bottom: 10px;
    padding-top: 20px;
    text-align: center;
}
.blog .desc {
    text-indent: 2em;
    line-height: 30px;
    margin-top: 8px;
}

.blog .detail {
    color: black;
    text-align: center;
    display: block;
    width: 140px;
    height: 30px;
    margin: 10px auto 0px auto;
    border: 2px solid rgb(20, 24, 24);
    line-height: 22px;
    text-decoration: none;
}

.blog .detail:active {
    color: blue;
}



页面实现效果

Snipaste_2024-03-11_17-11-39




博客正文页

相关代码

blog_content.html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>博客正文页</title>
    <link rel="stylesheet" href="../css/content.css">
</head>

<body>
    <div class="nav">
        <img src="../img/logo.png" alt="图片没加载出来">
        <span>我的博客系统</span>
        <span class="space"></span>
        <div>
            <a href="blog_list.html">主页</a>
            <a href="blog_edit.html">写博客</a>
            <a href="http://www.baidu.com/">注销</a>
        </div>
    </div>

    <div class="container">
        <div class="container-left">
            <!-- 个人信息 -->
            <div class="card">
                <img src="../img/touxiang.jpg" alt="图片没加载出来">
                <h3>姐姐</h3>
                <a href="https://gitee.com/liao-feiyangsss">github地址</a>
                <div class="counter">
                    <span>文章</span>
                    <span>分类</span>
                </div>
                <div class="counter">
                    <span>1</span>
                    <span>2</span>
                </div>
            </div>
        </div>
        <div class="container-right">
            <!-- 博客列表 -->
            <div class="blog">
                <div class="title">
                    《春天的早晨》
                </div>
                <div class="date">
                    2024-03-11
                </div>
                <div class="desc">
                    <p>
                        春天的早晨,是一首充满生机的诗篇。它轻轻地掀开夜幕,洒下一片淡淡的金色,像细沙般温柔地抚摸着沉睡的大地。万物在这温暖的光芒中苏醒,仿佛经过了一个冬天的沉寂,都迫不及待地想要展现出自己最美的姿态。
                    </p>
                    <P>
                        柳树披上了嫩绿的新装,柔软的枝条在微风中摇曳,好似少女的长发,飘逸而动人。河水也被这春色感染,变得碧波荡漾,宛如一面镜子,映照着蓝天白云和岸边的繁花。
                        空气中弥漫着淡淡的花香,那是桃花、杏花和樱花争相绽放的香气,它们交织在一起,形成了一种独特的春天的味道。这种味道让人心旷神怡,仿佛置身于一个梦幻般的仙境。
                        远处的小鸟开始欢快地歌唱,它们的歌声清脆悦耳,仿佛在庆祝春天的到来。小路上,早起的行人踏着轻快的步伐,脸上洋溢着笑容,他们也被这美好的春色所感染,心中充满了希望和期待。
                    </P>
                    <p>
                        春天的早晨,是一首充满希望和生机的诗篇。它让人感受到大自然的神奇和美丽,也让人对未来充满了无限的憧憬和期待。在这美好的时刻,我们仿佛可以感受到整个世界都在为我们而歌唱,为我们而绽放。
                    </p>
                </div>
            </div>
</body>
</html>

content.css

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html,body {
    height: 100%;
    width: 100%;
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.nav {
    width: 100%;
    height: 60px;
    background-color:  gray;
    display: flex;
    justify-content: left;
    align-items: center;
    color: white;
}
.nav img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* margin-top: 4px; */
    margin-left: 4px;
    margin-right: 8px;
}


.nav .space {
    width: 75%;
}


.nav a {
    color: white;
    text-decoration: none;
    /* margin-left: 10px; */
    margin-right: 15px;
}
.nav div {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 15%;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: calc(100% - 50px);
    width: 100%;
}

.container .container-left {
    height: 100%;
    width: 30%;
    background-color: rgba(255,255,255,0.8);
}

.container .container-right {
    height: 100%;
    width: 70%;
    background-color: rgba(255,255,255,0.8);
    overflow: auto;
}
.card {
    margin-top: 10px;
    width: 60%;
    height: 44%;
    background-color: rgba(255,255,255,0.8);
    margin-left: 200px;
    margin-right: 10px;
    border-radius: 15px;
}
.card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-left: 90px;
    margin-top: 35px;
}
.card h3 {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 8px;
}
.card a {
    display: block;
    text-align: center;
    color: grey;
    text-decoration: none;
    margin-bottom: 20px;
}
.card .counter {
    display: flex;
    justify-content: space-around;
    margin-top: 22px;
}

.blog {
    width: 100%;
    background-color:rgba(255,255,255,0.8);
    border-radius: 15px;
    margin-top: 12px;
    height: calc(100% - 30px);
    overflow: auto;
}

.blog .title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding-top: 20px;
}
.blog .date {
    color: rgb(47, 213, 255);
    padding-bottom: 10px;
    padding-top: 20px;
    text-align: center;
}
.blog .desc {
    text-indent: 2em;
    line-height: 30px;
    margin-top: 8px;
}

.blog .detail {
    color: black;
    text-align: center;
    display: block;
    width: 140px;
    height: 30px;
    margin: 10px auto 0px auto;
    border: 2px solid rgb(20, 24, 24);
    line-height: 22px;
    text-decoration: none;
}




页面实现效果

Snipaste_2024-03-11_17-11-24




博客编辑页

相关代码

blog_edit.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>博客编辑页</title>
    <link rel="stylesheet" href="../css/commom.css">
    <link rel="stylesheet" href="../css/edit.css">
    <link rel="stylesheet" href="editor.md/css/editormd.min.css"/>
</head>
<body>
    <div class="nav">
        <img src="../img/logo.png" alt="图片没加载出来">
        <span>我的博客系统</span>
        <span class="space"></span>
        <div>
            <a href="blog_list.html">主页</a>
            <a href="blog_edit.html">写博客</a>
            <a href="http://www.baidu.com/">注销</a>
        </div>
    </div>

    <div class="edit_blog_container">
        <div class="title">
            <input type="text">
            <button>发布文章</button>
        </div>
        <div id="editor">

        </div>
    </div>
</body>
    <!-- 引入 editor.md 的依赖 -->
    <script src="js/jquery.min.js"></script>
    <script src="editor.md/lib/marked.min.js"></script>
    <script src="editor.md/lib/prettify.min.js"></script>
    <script src="editor.md/editormd.js"></script>
    <script>
        let edit = editormd('editor', {
            width:"100%",
            height:"100%",
            markdown:"###开始编写博客",
            path:"./editor.md/lib/"
        }) 
    </script>
</html>

edit.css

.edit_blog_container {
    height: calc(100% - 50px);
    width: 100%;
}
input {
    width: 1000px;
    height: 60px;
    margin-top: 5px;
    border-radius: 8px;
    border: none;
}
button {
    width: 200px;
    height: 60px;
    margin-top: 5px;
    margin-left: 5px;
    border-radius: 8px;
    background-color: #afefd6;
    border: none;
    color: white;
    font-size: 20px;
    margin-top: 5px;
}

button:active {
    background-color: gray;
}
.title {
    display: flex;
    justify-content: center;
    align-items: center;
}
#editor {
    margin-top: 5px;
}




页面实现效果

Snipaste_2024-03-11_17-11-09

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1510762.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

【数学】【网格】【状态压缩】782 变为棋盘

作者推荐 视频算法专题 本文涉及知识点 数学 网格 状态压缩 LeetCode:782 变为棋盘 一个 n x n 的二维网络 board 仅由 0 和 1 组成 。每次移动&#xff0c;你能任意交换两列或是两行的位置。 返回 将这个矩阵变为 “棋盘” 所需的最小移动次数 。如果不存在可行的变换&am…

PWARL CTF and others

title: 一些复杂点的题目 date: 2024-03-09 16:05:24 tags: CTF 2024年3月9日 今日习题完成&#xff1a; 1.BUU [网鼎杯 2020 半决赛]AliceWebsite 2.[RoarCTF 2019]Online Proxy 3.[Polar CTF]到底给不给flag呢 4.网鼎杯 2020 总决赛]Game Exp [RoarCTF 2019]Online Proxy …

微信小程序云开发教程——墨刀原型工具入门(常用组件)

引言 作为一个小白&#xff0c;小北要怎么在短时间内快速学会微信小程序原型设计&#xff1f; “时间紧&#xff0c;任务重”&#xff0c;这意味着学习时必须把握微信小程序原型设计中的重点、难点&#xff0c;而非面面俱到。 要在短时间内理解、掌握一个工具的使用&#xf…

初学SpringBoot——请求响应

0 引言 我们在使用SpringBoot开发Java后端项目时候&#xff0c;需要响应前端发送过来的请求&#xff0c;那后端如何响应前端的请求呢&#xff1f;以及前端发送那么多的请求&#xff0c;后端如何根据不同的请求执行不同的代码呢&#xff1f; 1 Postman 当前&#xff0c;主流的…

电影院订票选座小程序|基于微信小程序的电影院购票系统设计与实现(源码+数据库+文档)

电影院订票选座小程序目录 目录 基于微信小程序的电影院购票系统设计与实现 一、前言 二、系统功能设计 三、系统实现 1、管理员功能实现 1、 影院信息管理 2 、电影信息管理 2、 用户功能实现 1、 影院信息 四、数据库设计 1、实体ER图 五、核心代码 六、论文参考…

3月12日 工作记录 DeepSeek-VL阅读笔记

昨天考完试&#xff0c;晚上把那个讨人厌的项目做了阶段结果给合作者展示去了&#xff0c;然后就看到deepseek发布了vision language的技术报告&#xff0c;于是打算今天上午看看。 DeepSeek VL 很多内容直接翻译自其 DeepSeek-VL&#xff0c;下面的我们指的的是deepseek vl的…

基于YOLOv8/YOLOv7/YOLOv6/YOLOv5的障碍物检测系统(Python+PySide6界面+训练代码)

摘要&#xff1a;开发障碍物检测系统对于道路安全性具有关键作用。本篇博客详细介绍了如何运用深度学习构建一个障碍物检测系统&#xff0c;并提供了完整的实现代码。该系统基于强大的YOLOv8算法&#xff0c;并对比了YOLOv7、YOLOv6、YOLOv5&#xff0c;展示了不同模型间的性能…

卡片大小,秒传千兆,内嵌加密 | 芯点子 x 希捷联名款CS1000高速移动固态硬盘首发评测

卡片大小&#xff0c;秒传千兆&#xff0c;内嵌加密 | 芯点子 x 希捷联名款CS1000高速移动固态硬盘首发评测 哈喽小伙伴们好&#xff0c;我是Stark-C~ 写在前面 我个人作为一名常和各种数据打交道的苦逼搬砖族&#xff0c;平时使用最多的操作就是各种数据备份、文件传输和分…

Codeforces Round 933 (Div. 3)

Codeforces Round 933 (Div. 3) Codeforces Round 933 (Div. 3) A. Rudolf and the Ticket 题意&#xff1a;俩口袋各有n和m枚不同面值的硬币&#xff0c;各取一枚&#xff0c;有多少种小于k的可能。 思路&#xff1a;数据很小&#xff0c;暴力枚举。 AC code&#xff1a;…

【深度学习笔记】7_6 RMSProp算法

注&#xff1a;本文为《动手学深度学习》开源内容&#xff0c;部分标注了个人理解&#xff0c;仅为个人学习记录&#xff0c;无抄袭搬运意图 7.6 RMSProp算法 我们在7.5节&#xff08;AdaGrad算法&#xff09;中提到&#xff0c;因为调整学习率时分母上的变量 s t \boldsymbol…

得帆助力大族激光主数据平台建设,用数据为企业生产力赋能

本期客户 大族激光科技产业集团股份有限公司&#xff08;以下简称“大族激光”&#xff09;是一家从事工业激光加工设备与自动化等配套设备及其关键器件的研发、生产、销售&#xff0c;激光、机器人及自动化技术在智能制造领域的系统解决方案的优质提供商&#xff0c;是国内激光…

RPC通信原理

RPC通信原理 RPC的概念 如果现在我有一个电商项目&#xff0c;用户要查询订单&#xff0c;自然而然是通过Service接口来调用订单的实现类。 我们把用户模块和订单模块都放在一起&#xff0c;打包成一个war包&#xff0c;然后再tomcat上运行&#xff0c;tomcat占有一个进程&am…

智能革新:思通数科开源AI平台在保险合同管理中的应用与优化

思通数科开源的多模态AI能力引擎平台是一个强大的工具&#xff0c;它结合了自然语言处理&#xff08;NLP&#xff09;、图像识别和语音识别技术&#xff0c;为企业提供自动化处理和分析文本、音视频和图像数据的能力。这个平台的开源性质意味着它可以被广泛地应用于各种业务场景…

JSP中间件漏洞

jsp的注入最难挖 另外3个好挖 struts2 url有action 就代表是struts2 用漏洞利用工具 下面之这两个一般都可以用工具扫一下 、 有些网站看起来没有 action实际上我们提交了 我们的账号和密码 之后就有了 工具包是下面 这些 github上面也有 用法就是如下图 把url放进去就…

3d视觉笔记 | 神经辐射场NeRF(Neural Radiance Fields)

NeRF概念 NeRF&#xff08;Neural Radiance Fields&#xff0c;神经辐射场&#xff09;是一种用于3D场景重建和图像渲染的深度学习方法。它由Ben Mildenhall等人在2020年的论文《NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis》中首次提出。NeRF通过…

8-100V转5V 2A 12V 2A 降压芯片 外置MOS 恒压输出

SC9103 一款宽电压范围降压型 DC-DC 电源管理芯片&#xff0c;内部集成使能开关控制、基准电源、误差放大器、 过热保护、限流保护、短路保护等功能&#xff0c;非常适合宽电压输入降压使用。 SC9103 零功耗使能控制&#xff0c;可以大大节省外围器件&#xff0c;更加适合电池场…

20240309web前端_第一周作业_完成用户注册界面

作业一&#xff1a;完成用户注册界面 成果展示&#xff1a; 完整代码&#xff1a; <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-…

c++初阶------类和对象(下)

作者前言 &#x1f382; ✨✨✨✨✨✨&#x1f367;&#x1f367;&#x1f367;&#x1f367;&#x1f367;&#x1f367;&#x1f367;&#x1f382; ​&#x1f382; 作者介绍&#xff1a; &#x1f382;&#x1f382; &#x1f382; &#x1f389;&#x1f389;&#x1f389…

避抗指南:如何寻找OLED透明屏供应商

寻找OLED透明屏供应商&#xff0c;你可以按照以下步骤进行&#xff1a; 明确需求&#xff1a;首先&#xff0c;你需要明确自己的需求&#xff0c;包括所需OLED透明屏的尺寸、分辨率、亮度、色彩饱和度等具体参数&#xff0c;以及预算和采购量。这有助于你更精准地找到符合需求的…

Django入门 整体流程跑通

Django学习笔记 一、Django整体流程跑通 1.1安装 pip install django //安装 import django //在python环境中导入django django.get_version() //获取版本号&#xff0c;如果能获取到&#xff0c;说明安装成功Django目录结构 Python310-Scripts\django-admi…