• 预览效果
    • 1. 实现博客列表页
      • 导航栏
      • common.css
      • blog_list.html
      • blog_list.css
    • 2. 实现博客正文页
      • blog_detail.html
      • blog_detail.css
    • 3. 实现博客登录(注销)页
      • blog_login.html
      • blog_login.css
      • blog_register.html
      • blog_register.css
    • 4. 实现博客编辑页
      • blog_edit.html
      • blog_edit.css

预览效果

这些内容基本就是前面学的内容的一些汇总,主要分为四个页面

1:博客列表页
2:博客正文页
3:博客登录(注销)页
4:博客编辑页

1. 实现博客列表页

因为这个项目需要的文件还是有点多的,所以建议还是要学会分文件夹来存储对应的类容:

要先实现这个博客列表页,我们就得先把框架搭好(整体布局),一看样式大体是这样:

一步来实现它,边写边看

导航栏

先把 html 部分写下来:

 <div class="nav"><img src="image/wallhaven-72keg9.jpg" alt=""><span>我的博客系统</span><div class="spacer"></div><a href="blog_list.html">主页</a><a href="blog_edit.html">写博客</a><a href="blog_register.html">注销</a></div>

接下来,就是样式 css 来改变他,由于我们发现,导航栏这几张页面都有,所以我们可以选择建一个公共的样式文件,

common.css

公共样式

/* 放置一些公共样式 */* {margin: 0;padding: 0;box-sizing: border-box;}/* 给整个页面加上背景图片 */html,body {height: 100%;}body {background-image: url(../image/wallhaven-57v7k8.jpg);background-repeat: no-repeat;background-position: center center;background-size: cover;}.nav {width: 100%; /* 这些尺寸啥的就是自己设 */ height: 50px; background-color: rgba(51, 51, 51, 0.4); color: white; /* 导航栏内部的内容,都是一行排列的,就需要使用 flex 布局来进行操作 */ display: flex; /* 实现了元素垂直居中效果 */ align-items: center;}.nav img {width: 40px;height: 40px;border-radius: 50%;margin-left: 30px;margin-right: 10px;}.nav a{color: white;text-decoration: none;padding: 0 10px;}

同样在html中别忘了引入css文件夹的内容

<link rel="stylesheet" href="css/common.css">

看看效果:

加下来就是按照这样的步骤一个一个的写下来…

blog_list.html

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>博客列表</title><link rel="stylesheet" href="css/common.css"><link rel="stylesheet" href="css/blog_lsit.css"></head><body><div class="nav"><label for="主页"></label><a href="blog_list.html"><img src="image/wallhaven-72keg9.jpg" alt="" id="主页"></a><span>我的博客系统</span><div class="spacer"></div><a href="blog_list.html">主页</a><a href="blog_edit.html">写博客</a><a href="blog_login.html">注销</a></div><div class="container"><div class="left"><div class="card"> <!-- 
-->
<img src="https://blog.csdn.net/chenbaifan/article/details/image/gamegirl.jpg" alt=""><h3>陈老铁</h3><a href="https://gitee.com/big-white-rice">gitee 地址</a><div class="counter"><span>文章</span><span>分类</span></div><div class="counter"><span>3</span><span>1</span></div></div></div><div class="right"><div class="blog"><div class="title">我的第一篇博客</div><div class="date">2022-05-05 20:52:00</div><div class="desc">从今天起, 我要认真敲代码. Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla alias tenetur ut velit ex voluptatibus consequatur quam exercitationem, assumenda ea blanditiis repudiandae" /></div><a href="blog_detail.html">查看全文 ">>">> </a></div><div class="blog"><div class="title">我的第二篇博客</div><div class="date">2022-05-05 20:52:00</div><div class="desc">从今天起, 我要认真敲代码. Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla alias tenetur ut velit ex voluptatibus consequatur quam exercitationem, assumenda ea blanditiis repudiandae? Repellendus tenetur nostrum asperiores molestias doloremque cupiditate maiores.</div><a href="blog_detail2.html">查看全文 ">>">> </a></div><div class="blog"><div class="title">我的第三篇博客</div><div class="date">2022-05-05 20:52:00</div><div class="desc">从今天起, 我要认真敲代码. Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla alias tenetur ut velit ex voluptatibus consequatur quam exercitationem, assumenda ea blanditiis repudiandae? Repellendus tenetur nostrum asperiores molestias doloremque cupiditate maiores.</div><a href="blog_detail3.html">查看全文 ">>">> </a></div></div></div></div></body></html>

blog_list.css

html, body {height: 100%;}body {background-image: url(../image/wallhaven-k7g117.jpg);background-repeat: no-repeat;background-position: center center;background-size: cover;}/* 博客列表相关样式 */.blog {width: 100%;padding: 20px;}.blog .title {text-align: center;font-size: 22px;font-weight: bold;padding: 10px 0;}.blog .date {text-align: center;color: rgb(201, 29, 52);padding: 10px 0;}.blog .desc {text-indent: 2em;background-color: rgba(134, 169, 139, 0.1);color: rgb(55, 4, 4);}.blog a {display: block;width: 140px;height: 40px;margin: 10px auto;border: 2px black solid;color: black;line-height: 40px;text-align: center;text-decoration: none;transition: all 0.5s;}.blog a:hover {background: #333;color: #fff;}

2. 实现博客正文页

blog_detail.html

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>博客详情页</title><link rel="stylesheet" href="css/common.css"><link rel="stylesheet" href="css/blog_detail.css"></head><body><div class="nav"><label for="主页"></label><a href="blog_list.html"><img src="image/wallhaven-72keg9.jpg" alt="" id="主页"></a><span>我的博客系统</span><div class="spacer"></div><a href="blog_list.html">主页</a><a href="blog_edit.html">写博客</a><a href="#">注销</a></div>  <div class="container"><div class="left"><div class="card"> <!-- 
-->
<img src="image/head.jpg" alt=""><h3>陈老铁</h3><a href="https://gitee.com/big-white-rice">gitee 地址</a><div class="counter"><span>文章</span><span>分类</span></div><div class="counter"><span>3</span><span>1</span></div></div></div><div class="right"><div class="blog-content"><h3>我的第一篇博客</h3><div class="date">2022-05-08 19:00:00</div><p>从今天开始, 我要认真敲代码. Lorem ipsum, dolor sit amet consectetur adipisicing elit. Blanditiis veniam dolorem modi, sunt quo rem facere ut dolores inventore ratione nemo provident quae eius adipisci quidem facilis quod. Maxime, nam" /></p><p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quaerat vel omnis consectetur reprehenderit velit, mollitia perspiciatis porro natus sit iure laudantium rem quas quae. Perferendis mollitia sint aut rerum minima?</p><p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Omnis aspernatur corporis autem nisi, aliquid exercitationem perferendis, repellat sequi labore ad expedita itaque quisquam aperiam? Voluptatem numquam cupiditate exercitationem quis earum.</p><p>从今天开始, 我要认真敲代码. Lorem ipsum, dolor sit amet consectetur adipisicing elit. Blanditiis veniam dolorem modi, sunt quo rem facere ut dolores inventore ratione nemo provident quae eius adipisci quidem facilis quod. Maxime, nam?</p> </div></div></div></body></html>

blog_detail.css

/* 给博客详情页使用的样式文件 */html, body {height: 100%;}body {background-image: url(../image/wallhaven-pkxqpm.jpg);background-repeat: no-repeat;background-position: center center;background-size: cover;}.blog-content {padding: 30px;}.blog-content h3 {text-align: center;padding: 20px 0;}.blog-content .date {text-align: center;color: rgb(0, 128, 0);padding: 20px 0;}.blog-content p {text-indent: 2em;padding: 10px 0;}

3. 实现博客登录(注销)页

blog_login.html

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>登录页面</title><link rel="stylesheet" href="css/common.css"><link rel="stylesheet" href="css/blog_login.css"></head><body><div class="nav"><img src="image/wallhaven-72keg9.jpg" alt=""><span>我的博客系统</span><div class="spacer"></div><a href="blog_list.html">主页</a><a href="blog_edit.html">写博客</a><a href="blog_register.html">注销</a></div><div class="login-container"><div class="login-dialog"><h3>登录</h3><div class="row"><span>用户名</span><input type="text" id="username" placeholder="输入用户名"></div><div class="row"><span>密码</span><input type="password" id="password" placeholder="输入密码"></div><div class="row"><button>提交</button></div></div></div></body></html>

blog_login.css

/* 登录界面样式 */html, body {height: 100%;}body {background-image: url(../image/wallhaven-57v7k8.jpg);background-repeat: no-repeat;background-position: center center;background-size: cover;}.login-container {width: 100%;height: calc(100% - 50px);display: flex;align-items: center;justify-content: center;}.login-dialog {width: 400px;height: 350px;background-color: rgba(255, 255, 255, 0.8);border-radius: 10px;}.login-dialog h3 {text-align: center;padding: 50px 0;}.login-dialog .row {height: 50px;width: 100%;display: flex;align-items: center;justify-content: center;}.login-dialog .row span {display: block;width: 100px;font-weight: 700;}#username, #password {width: 200px;height: 40px;font-size: 22px;line-height: 40px;padding-left: 10px;border-radius: 10px;border: none;outline: none;}.row button {width: 300px;height: 50px;border-radius: 10px;color: white;background-color: rgb(210, 19, 19);border: none;outline: none;margin-top: 50px;}.row button:active {background-color: #666;}

blog_register.html

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>注册页面</title><link rel="stylesheet" href="css/common.css"><link rel="stylesheet" href="css/blog_register.css"></head><body><div class="nav"><img src="image/wallhaven-72keg9.jpg" alt=""><span>我的博客系统</span><div class="spacer"></div><a href="blog_list.html">主页</a><a href="blog_edit.html">写博客</a><a href="blog_login.html">登录</a></div><div class="login-container"><div class="login-dialog"><h3>注册</h3><div class="row"><span>请输入用户名</span><input type="text" id="username" placeholder="输入用户名"></div><div class="row"><span>密码</span><input type="password" id="password" placeholder="输入密码"></div><div class="row"><span>确认密码</span><input type="password" id="password" placeholder="确认密码"></div><div class="row"><button>注册</button></div></div></div></body></html>

blog_register.css

html, body {height: 100%;}body {background-image: url(../image/wallhaven-dpzjzg.jpg);background-repeat: no-repeat;background-position: center center;background-size: cover;}.login-container {width: 100%;height: calc(100% - 50px);display: flex;align-items: center;justify-content: center;}.login-dialog {width: 400px;height: 400px;background-color: rgba(255, 255, 255, 0.8);border-radius: 10px;}.login-dialog h3 {text-align: center;padding: 50px 0;}.login-dialog .row {height: 50px;width: 100%;display: flex;align-items: center;justify-content: center;}.login-dialog .row span {display: block;width: 120px;font-weight: 700;}#username, #password {width: 230px;height: 40px;font-size: 22px;line-height: 40px;padding-left: 10px;border-radius: 10px;border: none;outline: none;}.row button {width: 300px;height: 50px;border-radius: 10px;color: white;background-color: rgb(210, 19, 19);border: none;outline: none;margin-top: 30px;}.row button:active {background-color: #666;}

4. 实现博客编辑页

这里我们 用的 Markdown 编辑器,是一个大佬实现的,我只是引用了他,同时还要引入 jquery

blog_edit.html

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>博客编辑页</title><link rel="stylesheet" href="css/common.css"><link rel="stylesheet" href="css/blog_edit.css"><link rel="stylesheet" href="editor.md/css/editormd.min.css" /><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></head><body><div class="nav"><img src="image/wallhaven-72keg9.jpg" alt=""><span>我的博客系统</span><div class="spacer"></div><a href="blog_list.html">主页</a><a href="blog_edit.html">写博客</a><a href="blog_register.html">注销</a></div><div class="blog-edit-container"><div class="title"><input type="text" placeholder="在此处输入标题"><button>发布文章</button></div><div id="editor"></div></div><script>// 初始化编辑器let editor = editormd("editor", {// 这里的尺寸必须在这里设置. 设置样式会被 editormd 自动覆盖掉. width: "100%",// 设定编辑器高度height: "calc(100% - 50px)",// 编辑器中的初始内容markdown: "# 在这里写下一篇博客",// 指定 editor.md 依赖的插件路径path: "editor.md/lib/"});</script></body></html>

blog_edit.css

/* 这是博客编辑页专用的样式文件 */html, body {height: 100%;}body {background-image: url(../image/wallhaven-1kmk39.jpg);background-repeat: no-repeat;background-position: center center;background-size: cover;}.blog-edit-container {width: 1000px;height: calc(100% - 50px);margin: 0 auto;}.blog-edit-container .title {width: 100%;height: 50px;display: flex;align-items: center;justify-content: space-between;}.blog-edit-container .title input {width: 895px;height: 40px;border-radius: 10px;border: none;outline: none;font-size: 22px;line-height: 40px;padding-left: 10px;background-color: rgba(255, 255, 255, 0.8);}.blog-edit-container .title button {width: 100px;height: 40px;border-radius: 10px;color: white;background-color: orange;border: none;outline: none;}.blog-edit-container .title button:active {background-color: #666;}#editor {border-radius: 10px;/* background-color: rgba(255, 255, 255, 0.8); */opacity: 80%;}

到这里,基本就写完了,审美有限!!看起图片啥的自己引入就好,这是我的gitee地址,需要自取:前端博客系统