文章目录
- 1. 成品展示
- 2. 知识准备
- 3. 博客系统页面搭建
-
- 3.1 基本介绍
- 3.2 博客列表页
- 3.3 博客详情页
- 3.4 博客登录页
- 3.5 博客编辑页
- 3.6 公共页面样式
- 3.7 markdown 编辑器引入
- 4. 总结
1. 成品展示 以下为个人搭建的一个简单博客系统页面,以后会不断改进,并且与后端结合,形成一个完整的博客系统
2. 知识准备 该博客系统页面是由 HTML + CSS + JavaScript 搭建的,如果没有了解过这些知识的友友,可以通过本人之前写好的几篇相关文章入门
- 文章一:《超多动图带你入门 HTML》
- 文章二:《两万字入门 CSS》
- 文章三:《JavaScript 入门知识》
- 文章四:《JavaScript 的数组、函数、对象》
- 文章五:《JavaScript WebAPI 介绍》
针对每个页面后面都会进行页面和代码的展示,并且代码中含有个人的注释。为了方便下载使用,下面附上该博客系统页面的 Gitee 链接
Gitee 链接: https://gitee.com/bbbbbge/blog-system
3.2 博客列表页 页面展示:
文章图片
页面元素 HTML 代码:
blog_list.html
博客列表页 - 锐客网
专属页面样式 CSS 代码:
blog_list.css
/* 这个 CSS 专门针对博客列表页来设置样式 */.blog {
width: 100%;
padding: 10px 20px;
}/* 博客的标题 */
.blog .title {
text-align: center;
font-size: 25px;
font-weight: 700;
padding-top: 10px;
padding-bottom: 5px;
}/* 博客的日期 */
.blog .date {
text-align: center;
padding-bottom: 10px;
color: grey;
}/* 博客的描述 */
.blog .desc {
text-indent: 2em;
}/* 查看博客详情的按钮 */
.blog .detail {
display: block;
width: 120px;
color: grey;
height: 30px;
/* 设置边框 */
border: 2px solid grey;
/* 文字水平居中 */
text-align: center;
/* 文字垂直居中 */
line-height: 30px;
/* 去掉下划线 */
text-decoration: none;
/* 让按钮来到屏幕中间 */
margin: 10px auto;
/* 加上一个过度效果 */
transition: all 1s;
}/* 实现鼠标悬停在按钮上时有一个背景色切换的效果 */
.blog .detail:hover {
background-color: grey;
color: white;
}
3.3 博客详情页 页面展示:
文章图片
页面元素 HTML 代码:
blog_detail.html
博客详情页 - 锐客网
我的第一篇博客
2022-2-16中国人的性情是喜欢调和折中的,譬如你说,这屋子太暗,须在这里开一个窗,大家一定不允许的。但如果你主张拆掉屋顶他们就来调和,愿意开窗了。
而忽而这些都空虚了,但有时故意地填以没奈何的自欺的希望。希望,希望,用这希望的盾,抗拒那空虚中的暗夜的袭来,虽然盾后面也依然是空虚中的暗夜。
如果痛苦换来的是结识真理、坚持真理,就应自觉的欣然承受,那时,也只有那时,痛苦穿掘着灵魂的深处,使人受了精神底苦刑而得到创伤,又即从这得伤和养伤和愈合中,得到苦的涤除,而上了苏生的路。
当我沉默着的时候,我觉得充实;我将开口,同时感到空虚。过去的生命已经死亡。我对于这死亡有大欢喜,因为我借此知道它曾经存活。死亡的生命已经朽腐。我对于这朽腐有大欢喜,因为我借此知道它还非空虚。
专属页面样式 CSS 代码: blog_detail.css
/* 这个 CSS 文件是用来放博客详情页的专属样式 */.blog-content {
padding: 30px;
}/* 博客标题 */
.blog-content h3 {
text-align: center;
padding-top: 40px;
padding-bottom: 20px;
font-size: 25px;
}/* 博客日期 */
.blog-content .date {
text-align: center;
padding-bottom: 10px;
color: grey;
}/* 博客内容 */
.blog-content p {
text-indent: 2em;
padding: 10px 0;
}
3.4 博客登录页 页面展示:
文章图片
页面元素 HTML 代码: blog_login.html
登录页 - 锐客网
登录
>用户名
>密码
专属页面样式 CSS 代码: blog_login.css
/* 这个 CSS 文件是放登陆页面的专属样式 *//* 1. 设置版心,让这个版心将页面填充满 */
/* 2. 在版心中间位置,设置一个登陆区域 */
.login-container {
width: 100%;
height: calc(100% - 50px);
display: flex;
justify-content: center;
align-items: center;
}.login-container .login-dialog {
width: 400px;
height: 280px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 20px;
}.login-dialog h3 {
text-align: center;
padding: 30px;
font-size: 25px;
}.login-dialog .row1 {
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}.login-dialog .row2 {
height: 40px;
display: flex;
align-items: center;
justify-content: center;
padding-top: 30px;
}.login-dialog .row1 span {
width: 80px;
font-weight: 700;
}.login-dialog .row1 input {
width: 200px;
height: 30px;
font-size: 15px;
padding-left: 10px;
background-color: rgba(255, 255, 255, 0.3);
/* 去掉边框 */
border: none;
/* 去掉轮廓线(选中输入框时,外面的黑边) */
outline: none;
}.login-dialog .row2 input {
width: 280px;
height: 35px;
border-radius: 8px;
font-size: 20px;
background-color: rgba(41, 83, 149, 0.7);
border: none;
}.login-dialog .row2 input:active {
background-color: black;
color: white;
}
3.5 博客编辑页 页面展示:
文章图片
页面元素 HTML 代码: blog_edit.html
博客编辑页 - 锐客网
src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js">
src="https://www.it610.com/article/editor.md-master/lib/marked.min.js">
src="https://www.it610.com/article/editor.md-master/lib/prettify.min.js">
src="https://www.it610.com/article/editor.md-master/editormd.js">
>
// 初始化 editor.md
let editor = editormd("editor", {
// 这里的尺寸必须在这里设置,设置样式会被 editormd 自动覆盖
width: "100%",
// 设定编辑高度
height: "500px",
// 编辑页中的初始化内容
markdown: "# 在这里写下一篇博客",
//指定 editor.md 依赖的插件路径
path: "editor.md-master/lib/"
});
专属页面样式 CSS 代码: blog_edit.css
/* 这个 CSS 文件放博客编辑的专属样式 *//* 博客编辑页的版心 */
.blog-edit-container {
width: 1000px;
height: calc(100% - 50px);
margin: 0 auto;
}/* 标题编辑区 */
.blog-edit-container .title {
margin-top: 20px;
width: 100%;
height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
}.blog-edit-container .title #title {
width: 795px;
height: 50px;
border-radius: 10px;
padding-left: 20px;
border: none;
outline: none;
background-color: rgba(41, 83, 149, 0.3);
font-size: 15px;
}.blog-edit-container .title #submit {
width: 200px;
height: 50px;
border-radius: 10px;
border: none;
outline: none;
background-color: rgba(255, 192 , 153, 0.4);
font-size: 20px;
}.blog-edit-container .title #submit:active {
background-color: rgba(41, 83, 149, 0.3);
}#editor {
border-radius: 10px;
border: none;
opacity: 0.7;
}
3.6 公共页面样式 公共页面样式 CSS 代码: common.css
/* 这个文件里面放4个页面公共的一些样式,比如背景、导航栏等 */* {
margin: 0;
padding: 0;
box-sizing: border-box;
}html, body {
/* 和父元素的一样高,body 的父亲是 html,html 的父亲是浏览器窗口 */
height: 100%;
/* 页面背景 */
background-image: url(../image/background.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
} /* 导航栏 */
.nav {
width: 100%;
height: 50px;
background-color: rgba(50, 50, 50, 0.2);
color: #fff;
display: flex;
justify-content: start;
align-items: center;
}/* 导航栏中的 log */
.nav img {
width: 40px;
height: 40px;
margin-left: 30px;
margin-right: 10px;
}/* 导航栏中的标题 */
.nav .title {
width: 120px;
}/* 导航栏中的占位符 */
.nav .spacer {
height: 40px;
width: calc(100% - 370px);
}/* 导航栏中的链接 */
.nav a {
width: 60px;
margin: 20px;
text-decoration: none;
color: white;
}/* 版心的样式 */
.container {
height: calc(100% - 50px);
width: 1000px;
margin: 0 auto;
/* 为了让版心里面的子元素能够以左右布局的方式显示,使用 flex 布局 */
display: flex;
align-items: center;
justify-content: space-between;
}/* 左侧区域样式 */
.container .container-left {
height: 100%;
width: 200px;
}/* 右侧区域样式 */
.container .container-right {
height: 100%;
width: 795px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 20px;
}/* 用户信息卡片,也会在多个页面中用到 */
.card {
background-color: rgba(255, 255, 255, 0.3);
border-radius: 20px;
padding: 30px;
}/* 用户头像 */
.card img {
width: 140px;
height: 140px;
border-radius: 50%;
}/* 用户名 */
.card h3 {
text-align: center;
padding: 10px 0;
}/* 其它信息 */
.card a {
/* a 标签是行内元素,设置尺寸、边距都可能失效,要转成块级元素 */
display: block;
text-decoration: none;
text-align: center;
color: grey;
padding: 3px;
}.card .counter {
display: flex;
justify-content: space-around;
font-size: 15px;
padding-top: 5px;
}
3.7 markdown 编辑器引入 在博客编辑页中含有一个 markdown 编辑器,这个是直接引入了一个叫 editor.md
的开源的页面 markdown 编辑器组件,大家也可以使用其它的编辑器组件
引入 editor.md
步骤:
- 下载 editor.md
大家直接进入该项目的官网进行下载即可
官网地址为:https://pandao.github.io/editor.md/
- 将下载好的 editor.md 接压缩到该博客项目中
文章图片
- 在博客编辑页中引入 editor.md 依赖
src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js">
src="https://www.it610.com/article/editor.md-master/lib/marked.min.js">
src="https://www.it610.com/article/editor.md-master/lib/prettify.min.js">
src="https://www.it610.com/article/editor.md-master/editormd.js">
- 在博客编辑页中,写个 JS 对 editor.md 进行初始化
// 初始化 editor.md
let editor = editormd("editor", {
// 这里的尺寸必须在这里设置,设置样式会被 editormd 自动覆盖
width: "100%",
// 设定编辑高度
height: "500px",
// 编辑页中的初始化内容
markdown: "# 在这里写下一篇博客",
//指定 editor.md 依赖的插件路径
path: "editor.md-master/lib/"
});
通过以上步骤,就可以将 editor.md 该 markdown 编辑器引入我们的博客编辑页了
4. 总结 【前端基础|【Web 三件套】个人简单博客系统页面搭建(附源码)】该博客系统页面只是运用前段时间学习的前端知识做出来的一个简单的页面,往后会通过不断的学习来对该博客系统进行补充,期待它的成品!
推荐阅读
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- js日记|自定义封装实现Promise
- 关于three.js修改直线页面没显示问题
- 操作系统|[译]从内部了解现代浏览器(1)
- web网页模板|如此优秀的JS轮播图,写完老师都沉默了
- 接口|axios接口报错-参数类型错误解决
- JavaScript|vue 基于axios封装request接口请求——request.js文件
- vue.js|vue中使用axios封装成request使用
- JavaScript|JavaScript: BOM对象 和 DOM 对象的增删改查
- JavaScript|JavaScript — 初识数组、数组字面量和方法、forEach、数组的遍历