diff --git "a/\345\220\264\351\221\253\351\270\277/20241023CSS3\351\200\211\346\213\251\345\231\250\350\257\246\350\247\243\345\222\214\345\261\236\346\200\247\350\257\246\350\247\243.md" "b/\345\220\264\351\221\253\351\270\277/20241023CSS3\351\200\211\346\213\251\345\231\250\350\257\246\350\247\243\345\222\214\345\261\236\346\200\247\350\257\246\350\247\243.md" new file mode 100644 index 0000000000000000000000000000000000000000..15ef8c9e3aca79950f95fab59a9c068feac39d81 --- /dev/null +++ "b/\345\220\264\351\221\253\351\270\277/20241023CSS3\351\200\211\346\213\251\345\231\250\350\257\246\350\247\243\345\222\214\345\261\236\346\200\247\350\257\246\350\247\243.md" @@ -0,0 +1,233 @@ +### 结构伪类选择器 +伪类选择器的标志性符号是`:` + +CSS中有一些伪类选择器,如:link、:visited、:hover、:active、:focus + +**1.格式(重要)(第一部分):** +- E:first-child:匹配父元素的第一个子元素E +- E:last-child:匹配父元素的最后一个子元素E +- E:nth-child(n):匹配父元素的第n个子元素E +- E:nth-child(odd):匹配奇数 +- E:nth-child(even):匹配偶数 +- E:nth-last-child(n):匹配父元素的倒数第n个子元素E + +**2.格式:(第二部分)** +- E:first-of-type:匹配同类型中的第一个同级兄弟元素E +- E:last-of-type:匹配同类型中的最后一个同级兄弟元素E +- E:nth-of-type(n):匹配同类型中的第n个同级兄弟元素E +- E:nth-last-of-type(n):匹配同类型中的倒数第n个同级兄弟元素E + +**3.格式:(第三部分)** +- E:empty:匹配没有任何子节点(包括空格等text节点)的元素E +- E:target:匹配相关URL指向的E元素 +### 伪元素选择器 +伪元素选择器的标志性符号是`::` + +**1.格式:(第一部分)** +- E::before:设置在元素E前面(依据对象树的逻辑结构)的内容,配合content属性一起使用 +- E::after:设置在元素E后面(依据对象树的逻辑结构)的内容,配合content属性一起使用 + +**2.格式:(第二部分)** +- E::fist-letter:是指元素E里面的第一个字符的样式 +- E::fist-line:是指元素E里面的第一行的样式 +- E::selection:设置元素E里面被鼠标选中的区域的样式(一般设置颜色和背景色) +## 文本 +### text-shadow:设置文本的阴影 +**语法:**text-shadow:水平位移 垂直位移 模糊程度 阴影颜色 +### 盒模型中的box-sizing属性 +- 外加模式:(css的默认方式)box-sizing:content-box; + +注:此时设置的width和height是**内容区域**的宽高,盒子的实际宽度=设置的width+padding+border,此时改变padding和border的大小,也不会改变内容的宽高,而是盒子的总宽高发生变化 + +- 内减模式:(注意)box-sizing:border-box; + +注:此时设置的width和height是**盒子**的总宽高,盒子的实际宽度=设置的width,此时改变padding和border的大小,会改变内容的宽高,盒子的总宽高不变 +### 边框 +边框的属性很多,其中**边框圆角**和*边框阴影**应用十分广泛 +### 边框圆角:border-radius属性 +边框的每个圆角,本质上是一个圆,圆有**水平半径**和**垂直半径**,如果二者相等,就是圆;如果二者不等,就是椭圆 +### 边框阴影:box-shadow属性 +语法:box-shadow:水平偏移 垂直偏移 模糊程度 阴影大小 阴影颜色 + +注:后面加一个inset属性,表示内阴影,如果不写,则默认表示外阴影 + +## 过渡:transition +transition含义是过渡,可以实现元素**不同状态间的平滑过渡**(补间动画) + +transition包括以下属性: +- transition-property:all;如果希望所有的属性都发生过渡,就使用all +- transition-duration:ls;过渡的持续时间 +- transition-timing-function:linear;运动曲线,属性值可以是: + - linear 线性 + - ease 减速 + - ease-in 加速 + - ease-out 减速 + - ease-in-out 先加速后减速 +- transition-delay:1s;过渡延迟 +## 2D转换 +### 缩放:scale +格式:transform:scale(x,y); +### 位移:translate +格式:transform:translate(水平位移,垂直位移); +### 旋转:rotate +格式:transform:rotate(角度); + +## 作业: +``` + 作业1: + +
+
+
+
+
+ + css: + *{ + margin: auto; + } + .d{ + height: 800px; + /* width: 320px; */ + background-color: #F5F5F5; + margin: 80px auto; + } + .dd{ + width: 230px; + height: 300px; + text-align: center; + margin-right: 20px; + background-color: #F5F5F5; + float: left; + position: relative; + top: 0; + overflow: hidden; + transition: all .5s; + } + .dd:hover{ + top:-5px; + box-shadow: -1px,-1px,15px,5px,black; + } + .dd .sp{ + position: absolute; + left: 0; + bottom: -80px; + width: 100%; + height: 80px; + background-color: #ff6700; + transition: all 999ms; + } + .dd:hover .sp{ + bottom: 0; + } + + 作业2: + +
遥遥领先
+ + css: + .d1{ + height: 200px; + width: 200px; + background-color: red; + margin: auto; + margin-top: 100px; + font-size: 30px; + color: white; + transition: all 3s; + + } + .d1:hover{ + transform: rotate(720deg); + } + + 作业3: + +
+ + css: + .d1{ + height: 800px; + width: 800px; + background-color: orange; + margin: auto; + } + .rocket{ + padding-top: 450px; + transform:translate(-200px,200px) rotate(45deg); + margin-left: 200px; + transition: all 1s ease-in; + } + .rocket:hover{ + transform:translate(400px,-400px) rotate(45deg); + } + + 作业4: + +
+ + + + + + + + + + + + + +
+ + css: + .d{ + width: 500px; + height: 800px; + margin: 100px auto; + position: relative; + } + img{ + width: 250px; + transition: all 2s; + transform-origin: center bottom; + position: absolute; + } + .d:hover img:nth-child(1){ + transform: rotate(-60deg); + } + .d:hover img:nth-child(2){ + transform: rotate(-50deg); + } + .d:hover img:nth-child(3){ + transform: rotate(-40deg); + } + .d:hover img:nth-child(4){ + transform: rotate(-30deg); + } + .d:hover img:nth-child(5){ + transform: rotate(-20deg); + } + .d:hover img:nth-child(6){ + transform: rotate(-10deg); + } + .d:hover img:nth-child(8){ + transform: rotate(10deg); + } + .d:hover img:nth-child(9){ + transform: rotate(20deg); + } + .d:hover img:nth-child(10){ + transform: rotate(30deg); + } + .d:hover img:nth-child(11){ + transform: rotate(40deg); + } + .d:hover img:nth-child(12){ + transform: rotate(50deg); + } + .d:hover img:nth-child(13){ + transform: rotate(60deg); + } + +``` \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/20241104flex\345\233\276\346\226\207\345\270\203\345\261\200\350\257\246\350\247\243.md" "b/\345\220\264\351\221\253\351\270\277/20241104flex\345\233\276\346\226\207\345\270\203\345\261\200\350\257\246\350\247\243.md" new file mode 100644 index 0000000000000000000000000000000000000000..9c13df2d3d7dcdbc33b34e4909459afca23637cc --- /dev/null +++ "b/\345\220\264\351\221\253\351\270\277/20241104flex\345\233\276\346\226\207\345\270\203\345\261\200\350\257\246\350\247\243.md" @@ -0,0 +1,237 @@ +## 弹性盒子 +使用display:flex或display:inline-flex声明一个**父容器**为弹性盒子,此时这个父容器里的子元素都会遵循弹性布局 +### flex-direction属性 +用于设置盒子中**子元素**的排列方向,属性值可以是: +- row 从左到右水平排列子元素(默认值) +- column 从上到下垂直排列子元素 +- row-reverse 从右到左排列子元素 +- column-reverse 从上到下垂直排列子元素 +### flex-wrap属性 +flex-wrap:控制子元素溢出时的换行处理 +## 弹性元素 +### justify-content属性 +justify-content:设置子元素在主轴上的排列方式,属性值可以是: +- flex-start 从主轴的起点对齐(默认值) +- flex-end 从主轴的终点对齐 +- center 居中对齐 +- space-around 在父盒子里平分 +- space-between 两端对齐平分 +### align-items属性 +align-items:设置子元素在**侧轴上的对齐方式**,属性值可以是: +- flex-start 从侧轴开始的方向对齐 +- flex-end 从侧轴结束的方向对齐 +- baseline 基线 默认同flex-start +- center 中间对齐 +- stretch 拉伸 + +## 作业: +``` + 练习1: + +
+
容器1
+
容器2
+
容器3
+
+ + css: + .d{ + display: flex; + height: 1000px; + width: 1000px; + } + .d1{ + height: 100px; + width: 100px; + background-color: red; + } + .d2{ + height: 200px; + width: 200px; + background-color: blue; + } + .d3{ + height: 300px; + width: 300px; + background-color: green; + } +效果图:https://pic.imgdb.cn/item/672a3323d29ded1a8cec653b.png + 练习2: + +
+
容器1
+
容器2
+
容器3
+
+ + css: + .d{ + display: flex; + height: 1000px; + /* width: 1000px; */ + + /* 居中对齐:*/ + justify-content: center; + /* 分散对齐: */ + /* justify-content: space-between; + justify-content: space-around; */ + } + .d1{ + height: 100px; + width: 100px; + background-color: red; + } + .d2{ + height: 200px; + width: 200px; + background-color: blue; + } + .d3{ + height: 300px; + width: 300px; + background-color: green; + } +效果图:https://pic.imgdb.cn/item/672a3324d29ded1a8cec661c.png + 练习3: + +
+
容器1
+
容器2
+
容器3
+
+ + css: + .d{ + display: flex; + height: 800px; + /* width: 1000px; */ + + /* 在侧轴上居中对齐: */ + align-items: center; + /* 在侧轴上对齐顶部: */ + /* align-items: flex-start; */ + /* 在侧轴上对齐底部: */ + /* align-items: flex-end; */ + } + .d1{ + height: 100px; + width: 100px; + background-color: red; + } + .d2{ + height: 200px; + width: 200px; + background-color: blue; + } + .d3{ + height: 300px; + width: 300px; + background-color: green; + } +效果图:https://pic.imgdb.cn/item/672a3325d29ded1a8cec66d4.png + 练习4: + +
+
容器1
+
容器2
+
容器3
+
+ + css: + .d{ + display: flex; + height: 1000px; + /* width: 1000px; */ + + /* 将子元素的方向从水平改为垂直: */ + flex-direction: column; + } + .d1{ + height: 100px; + width: 100px; + background-color: red; + } + .d2{ + height: 200px; + width: 200px; + background-color: blue; + } + .d3{ + height: 300px; + width: 300px; + background-color: green; + } +效果图:https://pic.imgdb.cn/item/672a3326d29ded1a8cec676a.png + 练习5: + +
+
容器1
+
容器2
+
容器3
+
+ + css: + .d{ + display: flex; + height: 1000px; + /* width: 1000px; */ + + /* 子元素在需要时换行 */ + flex-wrap: wrap; + align-content: start; + } + .d1{ + height: 100px; + width: 100px; + background-color: red; + } + .d2{ + height: 200px; + width: 200px; + background-color: blue; + } + .d3{ + height: 300px; + width: 300px; + background-color: green; + } + + 10个盒子: + +
+
+
+
+
+
+
+
+
+
+
+
+ + css: + .container { + display: flex; + flex-direction: row; + flex-wrap: wrap; + align-items: center; + height: 100vh; + padding: 10px; + box-sizing: border-box; +} + +.box { + width: 100px; + height: 100px; + background-color: red; + margin: 5px; +} +@media (max-width: 600px) { + .container { + flex-direction: column; + align-content: start; + } + } +``` \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/9.4\347\254\224\350\256\260.md" "b/\345\220\264\351\221\253\351\270\277/9.4\347\254\224\350\256\260.md" deleted file mode 100644 index cb9758ab1111ddd1786b9708c3eef125cab84c7f..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/9.4\347\254\224\350\256\260.md" +++ /dev/null @@ -1,37 +0,0 @@ -Ctrl+Shift+v:预览 - -![gitee图片演示](./imgs/img01.jpg) - -# 一级标题 - -## 二级标题 - -*斜体* - -**粗体** - -***粗斜体*** - -+、-、*作为无序列表的符号 - -* 无序列表1 - + 又是无序列表1 - + 又是无序列表2 - + 又是无序列表3 - -* 无序列表2 - - 又是无序列表1 - - 又是无序列表2 - - 又是无序列表3 - -* 无序列表3 - * 又是无序列表1 - * 又是无序列表2 - * 又是无序列表3 - -> 我是一段引用 - -| 左对齐 | 居中 | 右对齐 | -| :- | :-: | -: | -| 单元格1 | 单元格2 | 单元格3 | -| 单元格4 | 单元格5 | 单元格6 | \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/9.9\347\254\224\350\256\260.md" "b/\345\220\264\351\221\253\351\270\277/9.9\347\254\224\350\256\260.md" deleted file mode 100644 index 1e960b18ff0eaec34143997f06071621ca5fe13a..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/9.9\347\254\224\350\256\260.md" +++ /dev/null @@ -1,53 +0,0 @@ -1.Web:全球广域网,也称为万维网 Web端就是网页端 -2.网页:网页是构成网站的基本元素。网页主要由文字、图像和超链接等元素构成 -3.浏览器:浏览器是网页运行的平台,常见的浏览器有谷歌(Chrome)、Safari、火狐(Firefox)、IE、Edge、Opera等 -4.W3C:World Wide Web Consortium:万维网联盟组织,用来制定web标准当机构(组织) -5.Web标准:制作网页要遵循的规范 -(1)结构标准(HTML):用于对网页元素进行整理和分类 -(2)表现标准(CSS):用于设置网页元素的板式、颜色、大小等外观样式 -(3)行为标准(JS):用于定义网页的交互和行为 -6.浏览器当市场占有份额: -![](http://img.smyhvae.com/20200322_1058.png) -7.浏览器当组成:(1)渲染引擎(浏览器内核):用来解析HTML与CSS,渲染引擎决定了浏览器如何显示网页的内容以及页面的格式信息 作用:读取网页内容,计算网页的显示方式并显示在页面上 -## 常见浏览器的内核: -|浏览器 | 内核| -|:-------------:|:-------------:| -| chrome | Blink | -| 欧鹏 | Blink | -|360安全浏览器| Blink| -|360极速浏览器| Blink| -|Safari|Webkit| -|Firefox 火狐|Gecko| -|IE| Trident | -(2)JS引擎(JS解释器):用来解析网页中的JavaScript代码,对其处理后再运行 -## 常见浏览器的JS引擎: -|浏览器 | JS 引擎| -|:-------------:|:-------------| -|chrome / 欧鹏 | V8 | -|Safari|Nitro| -|Firefox 火狐|SpiderMonkey(1.0-3.0)/ TraceMonkey(3.5-3.6)/ JaegerMonkey(4.0-)| -|Opera|Linear A(4.0-6.1)/ Linear B(7.0-9.2)/ Futhark(9.5-10.2)/ Carakan(10.5-)| -|IE|Trident | -8.浏览器工作原理: -(1)User Interface(UI界面):包括地址栏、前进/后退按钮、书签菜单等 -(2)Browser engine(浏览器引擎):用来查询和操作渲染引擎。是UI界面和渲染引擎之间的桥梁 -(3)Rendering engine(渲染引擎):用于解析HTML和CSS,并将解析后的内容显示在浏览器上。 -(4)Networking (网络模块):用于发送网络请求。 -(5)JavaScript Interpreter(JavaScript解析器):用于解析和执行 JavaScript 代码。 -(6)UI Backend(UI后端):用于绘制组合框、弹窗等窗口小组件。 -(7)Data Persistence(数据存储模块):数据存储 cookie、HTML5中的localStorage、sessionStorage。 -8.HTML概述:(1)概念:**HTML** 全称为HyperText Markup Language,不是一种编程语言,是一种描述性当**标记语言** **作用**:HTML是负责描述文档**语义**的语言 -(2)超文本:从一个文件跳转到另一个文件,与世界各地主机的文件进行连接 -9.HTML的专有名词: -- 网页:有各种标记组成当一个页面 -- 主页(首页):一个网站的起始页面或者导航页面 -- 标记(标签):例:`

`为开始标记,`

`为结束标记 -- 元素:标签内的内容称为元素,也叫dom元素,也叫节点 -- 属性:给每一个标签所做当辅助信息 -- XHTML:符合XML语法标准的HTML -- DHTML:javascript + css + html 合起来的页面 -- HTTP:超文本传输协议 -9.html骨架标签分类:(1)``:HTML标签 -(2)``:文档头部,必须设置 -(3)``:文档标题 -(4)``:文档主体 \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240909\344\275\234\344\270\232/\346\237\245\350\257\242\346\265\217\350\247\210\345\231\250\345\274\225\346\223\216\346\270\262\346\237\223.md" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240909\344\275\234\344\270\232/\346\237\245\350\257\242\346\265\217\350\247\210\345\231\250\345\274\225\346\223\216\346\270\262\346\237\223.md" deleted file mode 100644 index 8726a748876f8498f397c76a8468dabae8cf6a5a..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240909\344\275\234\344\270\232/\346\237\245\350\257\242\346\265\217\350\247\210\345\231\250\345\274\225\346\223\216\346\270\262\346\237\223.md" +++ /dev/null @@ -1,10 +0,0 @@ -| 浏览器名称 | 渲染核心 | JS引擎 | -| ----------- | --------- | ------ | -| Google Chrome | Blink | V8 | -| Mozilla Firefox | Gecko | SpiderMonkey | -| Apple Safari | WebKit | JavaScriptCore | -| Microsoft Edge | Blink | V8 | -| UC浏览器 | 基于Blink/WebKit | V8/JavaScriptCore | -| 360安全浏览器 | 基于Blink/WebKit | V8/JavaScriptCore | - -表格中的信息是基于搜索结果的最新数据,并且可能会随着时间和技术的发展而变化。例如,Microsoft Edge在早期版本中使用了EdgeHTML作为渲染核心和Chakra作为JS引擎,但在后来的版本中转向了Blink渲染核心和V8 JS引擎。 \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240911\344\275\234\344\270\232/\344\275\234\344\270\2321(\346\260\264\345\271\263\347\272\277).html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240911\344\275\234\344\270\232/\344\275\234\344\270\2321(\346\260\264\345\271\263\347\272\277).html" deleted file mode 100644 index 6914777b5089e8ec07d0fa795098c02892e1c217..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240911\344\275\234\344\270\232/\344\275\234\344\270\2321(\346\260\264\345\271\263\347\272\277).html" +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - Document - - - -

-


-

- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240911\344\275\234\344\270\232/\344\275\234\344\270\2322(\346\226\207\345\255\227\345\261\205\344\270\255).html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240911\344\275\234\344\270\232/\344\275\234\344\270\2322(\346\226\207\345\255\227\345\261\205\344\270\255).html" deleted file mode 100644 index 04ab19fb166a833337026466e6f5f9645d50dbf6..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240911\344\275\234\344\270\232/\344\275\234\344\270\2322(\346\226\207\345\255\227\345\261\205\344\270\255).html" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - Document - - - -

赤壁赋

-

宋 苏轼

-
-

- 壬戌之秋,七月既望,苏子与客泛舟游于赤壁之下 -

-
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240913\344\275\234\344\270\232/imgs/\345\233\276\347\211\207.png" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240913\344\275\234\344\270\232/imgs/\345\233\276\347\211\207.png" deleted file mode 100644 index e1ade069f04a3d61f8f7eeef23f203fe4291cfab..0000000000000000000000000000000000000000 Binary files "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240913\344\275\234\344\270\232/imgs/\345\233\276\347\211\207.png" and /dev/null differ diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240913\344\275\234\344\270\232/\345\233\276\347\211\207\346\260\264\345\271\263\345\236\202\347\233\264\345\261\205\344\270\255.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240913\344\275\234\344\270\232/\345\233\276\347\211\207\346\260\264\345\271\263\345\236\202\347\233\264\345\261\205\344\270\255.html" deleted file mode 100644 index 58274ec929cceefa71c2d6848943f774d1c093b6..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240913\344\275\234\344\270\232/\345\233\276\347\211\207\346\260\264\345\271\263\345\236\202\347\233\264\345\261\205\344\270\255.html" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - Document - - - -
图片
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240914\344\275\234\344\270\232/\350\213\271\346\236\234\345\256\230\347\275\221.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240914\344\275\234\344\270\232/\350\213\271\346\236\234\345\256\230\347\275\221.html" deleted file mode 100644 index 40f28ad1fc15f1d031ab7f923a075a141d571ab7..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240914\344\275\234\344\270\232/\350\213\271\346\236\234\345\256\230\347\275\221.html" +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - Document - - - - - - - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240918\344\275\234\344\270\232/\346\214\211\351\222\256.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240918\344\275\234\344\270\232/\346\214\211\351\222\256.html" deleted file mode 100644 index 8d0a0d345ffe4de40fb9b39abfbff2e7d04721a6..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240918\344\275\234\344\270\232/\346\214\211\351\222\256.html" +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - Document - - - - - - - - - - -
区块1区块2区块3区块4
- - - - - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240920\344\275\234\344\270\232/\347\231\273\345\275\225\351\241\265\351\235\242.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240920\344\275\234\344\270\232/\347\231\273\345\275\225\351\241\265\351\235\242.html" deleted file mode 100644 index 3628286fb63e39f2f33120f61f919585487e7e29..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240920\344\275\234\344\270\232/\347\231\273\345\275\225\351\241\265\351\235\242.html" +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - Document - - - -
-

登录页面

-
-
- - -
-
- - -
- -
-
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240920\344\275\234\344\270\232/\350\267\221\351\251\254\347\201\257.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240920\344\275\234\344\270\232/\350\267\221\351\251\254\347\201\257.html" deleted file mode 100644 index 3e9b99480fb359085cf7fc48827128a2e25b9a2f..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240920\344\275\234\344\270\232/\350\267\221\351\251\254\347\201\257.html" +++ /dev/null @@ -1,35 +0,0 @@ - - - - - -跑马灯效果示例 - - - - -
-
-

壬戌之秋,七月既望,苏子与客泛舟游于赤壁之下。清风徐来,水波不兴。举酒属客,诵明月之诗,歌窈窕之章。少焉,月出于东山之上,徘徊于斗牛之间。白露横江,水光接天。纵一苇之所如,凌万顷之茫然。浩浩乎如冯虚御风,而不知其所止;飘飘乎如遗世独立,羽化而登仙

-
-
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\346\215\225\350\216\267.PNG" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\346\215\225\350\216\267.PNG" deleted file mode 100644 index dfa4efa2b756fab2121c7abf44fe7de810eb4ae0..0000000000000000000000000000000000000000 Binary files "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\346\215\225\350\216\267.PNG" and /dev/null differ diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\344\275\215\347\275\256.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\344\275\215\347\275\256.html" deleted file mode 100644 index dca464a5a638eb48711c6d5c6d240911fbb7d8e4..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\344\275\215\347\275\256.html" +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - Document - - - -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\345\233\276\347\211\207.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\345\233\276\347\211\207.html" deleted file mode 100644 index 85e2b9e05068ce44665f838627f682698cbd011a..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\345\233\276\347\211\207.html" +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - Document - - - -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\345\260\272\345\257\270.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\345\260\272\345\257\270.html" deleted file mode 100644 index e2bccf61e97e9b43219a9b6b8703efcc4a475488..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\345\260\272\345\257\270.html" +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - Document - - - -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\351\207\215\345\244\215.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\351\207\215\345\244\215.html" deleted file mode 100644 index 5f29ff89233658a10c8e9f0ed0882da87cd44735..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\351\207\215\345\244\215.html" +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - Document - - - -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\351\242\234\350\211\262.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\351\242\234\350\211\262.html" deleted file mode 100644 index 5cd02ca01650790b106b92a64ddbf4aa8f23a92f..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\345\237\272\347\241\200\347\273\203\344\271\240/\350\203\214\346\231\257\351\242\234\350\211\262.html" +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - Document - - - -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\233\276\347\211\2071.PNG" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\233\276\347\211\2071.PNG" deleted file mode 100644 index dfa4efa2b756fab2121c7abf44fe7de810eb4ae0..0000000000000000000000000000000000000000 Binary files "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\233\276\347\211\2071.PNG" and /dev/null differ diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\233\276\347\211\2072.PNG" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\233\276\347\211\2072.PNG" deleted file mode 100644 index 01f1573fb75cd3046f55991f6a64f2c24fab2ab5..0000000000000000000000000000000000000000 Binary files "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\233\276\347\211\2072.PNG" and /dev/null differ diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\244\232\351\207\215\350\203\214\346\231\257.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\244\232\351\207\215\350\203\214\346\231\257.html" deleted file mode 100644 index bc719404651dc83ec399fd4581e673c8a2d8d02e..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\345\244\232\351\207\215\350\203\214\346\231\257.html" +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - Document - - - -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\346\270\220\345\217\230.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\346\270\220\345\217\230.html" deleted file mode 100644 index 0d8112fb7f9164824c1a9c65ec8b476ef1617950..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\346\270\220\345\217\230.html" +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - Document - - - -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\347\274\251\346\224\276.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\347\274\251\346\224\276.html" deleted file mode 100644 index caa8f96e83f88f7b2dc14f675703621b43e2a594..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\347\274\251\346\224\276.html" +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - Document - - - -
-
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\350\243\201\345\211\252.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\350\243\201\345\211\252.html" deleted file mode 100644 index c2dd78b240030e83034c2af9c0e066a9840f0694..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\350\243\201\345\211\252.html" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - Document - - - -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\351\231\204\345\212\240\345\261\236\346\200\247.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\351\231\204\345\212\240\345\261\236\346\200\247.html" deleted file mode 100644 index b7098724e94bcd272176a42f7e15a56cef9399e6..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.29\344\275\234\344\270\232/\350\277\233\351\230\266\347\273\203\344\271\240/\350\203\214\346\231\257\351\231\204\345\212\240\345\261\236\346\200\247.html" +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - Document - - - - - - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.30\344\275\234\344\270\232/\346\273\232\345\212\250\350\247\206\345\267\256.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.30\344\275\234\344\270\232/\346\273\232\345\212\250\350\247\206\345\267\256.html" deleted file mode 100644 index 922690528e18b7a795ce65b390b1ebe8a06c84e3..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.30\344\275\234\344\270\232/\346\273\232\345\212\250\350\247\206\345\267\256.html" +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - Document - - - -
头部
-
-
内容
-
-
底部
-
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.30\344\275\234\344\270\232/\347\272\277\346\200\247\346\270\220\345\217\230.html" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.30\344\275\234\344\270\232/\347\272\277\346\200\247\346\270\220\345\217\230.html" deleted file mode 100644 index 14726adb5e95b8b76ed75a05da7ab80451aad35f..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\220\216\344\275\234\344\270\232/20240929\345\222\21420240930\344\275\234\344\270\232/9.30\344\275\234\344\270\232/\347\272\277\346\200\247\346\270\220\345\217\230.html" +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - Document - - - -
- -
- - \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240904\345\210\227\350\241\250.md" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240904\345\210\227\350\241\250.md" deleted file mode 100644 index cb9758ab1111ddd1786b9708c3eef125cab84c7f..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240904\345\210\227\350\241\250.md" +++ /dev/null @@ -1,37 +0,0 @@ -Ctrl+Shift+v:预览 - -![gitee图片演示](./imgs/img01.jpg) - -# 一级标题 - -## 二级标题 - -*斜体* - -**粗体** - -***粗斜体*** - -+、-、*作为无序列表的符号 - -* 无序列表1 - + 又是无序列表1 - + 又是无序列表2 - + 又是无序列表3 - -* 无序列表2 - - 又是无序列表1 - - 又是无序列表2 - - 又是无序列表3 - -* 无序列表3 - * 又是无序列表1 - * 又是无序列表2 - * 又是无序列表3 - -> 我是一段引用 - -| 左对齐 | 居中 | 右对齐 | -| :- | :-: | -: | -| 单元格1 | 单元格2 | 单元格3 | -| 单元格4 | 单元格5 | 单元格6 | \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240909\345\270\270\350\247\201\346\265\217\350\247\210\345\231\250.md" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240909\345\270\270\350\247\201\346\265\217\350\247\210\345\231\250.md" deleted file mode 100644 index 1e960b18ff0eaec34143997f06071621ca5fe13a..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240909\345\270\270\350\247\201\346\265\217\350\247\210\345\231\250.md" +++ /dev/null @@ -1,53 +0,0 @@ -1.Web:全球广域网,也称为万维网 Web端就是网页端 -2.网页:网页是构成网站的基本元素。网页主要由文字、图像和超链接等元素构成 -3.浏览器:浏览器是网页运行的平台,常见的浏览器有谷歌(Chrome)、Safari、火狐(Firefox)、IE、Edge、Opera等 -4.W3C:World Wide Web Consortium:万维网联盟组织,用来制定web标准当机构(组织) -5.Web标准:制作网页要遵循的规范 -(1)结构标准(HTML):用于对网页元素进行整理和分类 -(2)表现标准(CSS):用于设置网页元素的板式、颜色、大小等外观样式 -(3)行为标准(JS):用于定义网页的交互和行为 -6.浏览器当市场占有份额: -![](http://img.smyhvae.com/20200322_1058.png) -7.浏览器当组成:(1)渲染引擎(浏览器内核):用来解析HTML与CSS,渲染引擎决定了浏览器如何显示网页的内容以及页面的格式信息 作用:读取网页内容,计算网页的显示方式并显示在页面上 -## 常见浏览器的内核: -|浏览器 | 内核| -|:-------------:|:-------------:| -| chrome | Blink | -| 欧鹏 | Blink | -|360安全浏览器| Blink| -|360极速浏览器| Blink| -|Safari|Webkit| -|Firefox 火狐|Gecko| -|IE| Trident | -(2)JS引擎(JS解释器):用来解析网页中的JavaScript代码,对其处理后再运行 -## 常见浏览器的JS引擎: -|浏览器 | JS 引擎| -|:-------------:|:-------------| -|chrome / 欧鹏 | V8 | -|Safari|Nitro| -|Firefox 火狐|SpiderMonkey(1.0-3.0)/ TraceMonkey(3.5-3.6)/ JaegerMonkey(4.0-)| -|Opera|Linear A(4.0-6.1)/ Linear B(7.0-9.2)/ Futhark(9.5-10.2)/ Carakan(10.5-)| -|IE|Trident | -8.浏览器工作原理: -(1)User Interface(UI界面):包括地址栏、前进/后退按钮、书签菜单等 -(2)Browser engine(浏览器引擎):用来查询和操作渲染引擎。是UI界面和渲染引擎之间的桥梁 -(3)Rendering engine(渲染引擎):用于解析HTML和CSS,并将解析后的内容显示在浏览器上。 -(4)Networking (网络模块):用于发送网络请求。 -(5)JavaScript Interpreter(JavaScript解析器):用于解析和执行 JavaScript 代码。 -(6)UI Backend(UI后端):用于绘制组合框、弹窗等窗口小组件。 -(7)Data Persistence(数据存储模块):数据存储 cookie、HTML5中的localStorage、sessionStorage。 -8.HTML概述:(1)概念:**HTML** 全称为HyperText Markup Language,不是一种编程语言,是一种描述性当**标记语言** **作用**:HTML是负责描述文档**语义**的语言 -(2)超文本:从一个文件跳转到另一个文件,与世界各地主机的文件进行连接 -9.HTML的专有名词: -- 网页:有各种标记组成当一个页面 -- 主页(首页):一个网站的起始页面或者导航页面 -- 标记(标签):例:`

`为开始标记,`

`为结束标记 -- 元素:标签内的内容称为元素,也叫dom元素,也叫节点 -- 属性:给每一个标签所做当辅助信息 -- XHTML:符合XML语法标准的HTML -- DHTML:javascript + css + html 合起来的页面 -- HTTP:超文本传输协议 -9.html骨架标签分类:(1)``:HTML标签 -(2)``:文档头部,必须设置 -(3)``:文档标题 -(4)``:文档主体 \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240911\346\240\207\347\255\276.md" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240911\346\240\207\347\255\276.md" deleted file mode 100644 index 62a80dd5f0f599cf29a5f8b0b1436e2bcee54c4a..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240911\346\240\207\347\255\276.md" +++ /dev/null @@ -1,63 +0,0 @@ -## HTML的规范 -- HTML不区分大小写,但HTML的标签名、类名、标签属性、大部分属性值建议统一用小写。 -- HTML页面的后缀名是html或者htm(有一些系统不支持后缀名长度超过3个字符,比如dos系统) -### 编写XHTML的规范: -(1)所有标记元素都要正确的嵌套,不能交叉嵌套 -(2)所有的标记都必须小写 -(3)所有的标签都必须闭合 -(4)所有的属性值必须加引号 -(5)所有的属性必须有值 -(6)XHTML文档开头必须要有DTD文档类型定义 -### HTML的基本语法特性: -#### (1)HTML对换行不敏感,对tab不敏感 -#### (2)空白折叠现象 -#### (3)标签要严格封闭 -## 标题标签 -标题使用`

`至`

`标签进行定义。`

`定义最大的标题,`

`定义最小的标题。具有align属性,属性值可以是:left、center、right -## 段落标签`

` -**作用**:可以把 HTML 文档分割为若干段落。在网页中如果要把文字有条理地显示出来,离不开段落标签 -## 水平线标签`


` -可以在视觉上将文档分隔成各个部分 -## 换行标签`
` -文本强制换行显示 -## `
`和``标签 -- **div标签**:可以把标签中的内容分割为独立的区块。必须单独占据一行 -- **span标签**:和div的作用一致,但不换行 -div标签的属性: -- `align="属性值"`:设置块儿的位置。属性值可选择:left、right、 center -### div和span的区别: -``是不换行的,而`
`是换行的 -## 内容居中标签 `
` -只要是在这个标签里面的内容,都会居于浏览器的中间 -## 预定义(预格式化)标签`
`
-将保留标签内部所有的空白字符(空格、换行符),原封不动地输出结果(不要忽略空格和空行)
-## 作业:
-```
-水平线:
-
-
-    

-


-

- -文字居中: - - -

赤壁赋

-

宋 苏轼

-
-

- 壬戌之秋,七月既望,苏子与客泛舟游于赤壁之下 -

-
- -``` \ No newline at end of file diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240913\346\240\207\347\255\276\345\222\214\345\233\276\347\211\207\346\260\264\345\271\263\345\236\202\347\233\264\345\261\205\344\270\255.md" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240913\346\240\207\347\255\276\345\222\214\345\233\276\347\211\207\346\260\264\345\271\263\345\236\202\347\233\264\345\261\205\344\270\255.md" deleted file mode 100644 index 3406d353921b10d712da55cca62c8927f1cd210b..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240913\346\240\207\347\255\276\345\222\214\345\233\276\347\211\207\346\260\264\345\271\263\345\236\202\347\233\264\345\261\205\344\270\255.md" +++ /dev/null @@ -1,38 +0,0 @@ -*   空格 -* < < 左尖括号 -* > > 右尖括号 -* © 版权@ -* &trade 商标 -* & 符号& -* " 双引号 -* &apos 单引号 -* <;u>;标签---下划线 -* <;s>;标签或者<;del>;标签---被划掉的,在css样式中为line-through属性值 -* <;i>;标签或者<;em>;标签---斜体 -* a标签中的target属性的blank值可以全新刷新一次并跳转到新页面 -* 锚链接 -1.内容 - -2. - -图片标签,图片不显示时,展示的文字 - -## 作业: -``` - - -
图片
- -``` - -图片.png diff --git "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240914\345\210\227\350\241\250\346\240\207\347\255\276.md" "b/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240914\345\210\227\350\241\250\346\240\207\347\255\276.md" deleted file mode 100644 index 4f9a390fd6f6431f58001292ea678f01683ce16a..0000000000000000000000000000000000000000 --- "a/\345\220\264\351\221\253\351\270\277/\350\257\276\345\240\202\347\254\224\350\256\260/20240914\345\210\227\350\241\250\346\240\207\347\255\276.md" +++ /dev/null @@ -1,124 +0,0 @@ -# 标签: - (1)列表标签:`
    `、`
      `、`
      ` - - (2)表格标签:`` - - (3)框架标签及内嵌框架`