编程语言笔记前端web前端合集
Linstars
来自黑马程序员培训机构的web前端学习笔记~,黑马程序员官网-IT培训机构
day01:HTML 基础
目标:掌握标签基本语法,能够独立布局文章页。
01-今日课程介绍
今日目标:掌握标签基本语法,能够独立布局文章页。
核心技术点
网页组成
排版标签
多媒体标签及属性
综合案例一 - 个人简介
综合案例二 - Vue 简介
02-标签语法
HTML 超文本标记语言——HyperText Markup Language。
标签结构
- 标签要成对出现,中间包裹内容
- <>里面放英文字母(标签名)
- 结束标签比开始标签多 /
- 标签分类:双标签和单标签
1 2 3
| <strong>需要加粗的文字<strong> <br> <hr>
|
03-HTML骨架
- html:整个网页
- head:网页头部,用来存放给浏览器看的信息,例如 CSS
- body:网页主体,用来存放给用户看的信息,例如图片、文字
1 2 3 4 5 6 7 8
| <html> <head> <title>网页标题</title> </head> <body> 网页主体 </body> </html>
|
提示
VS Code 可以快速生成骨架:在 HTML 文件(.html)中,!(英文)配合 Enter / Tab 键
04-标签的关系
作用:明确标签的书写位置,让代码格式更整齐
05-注释
概念:注释是对代码的解释和说明,能够提高程序的可读性,方便理解、查找代码。
注释不会再浏览器中显示。
在 VS Code 中,添加 / 删除注释的快捷键:Ctrl + /
06-标题标签
一般用在新闻标题、文章标题、网页区域名称、产品名称等等。
1 2 3 4 5 6
| <h1>一级标题</h1> <h2>二级标题</h2> <h3>三级标题</h3> <h4>四级标题</h4> <h5>五级标题</h5> <h6>六级标题</h6>
|
显示特点:
经验
- h1 标签在一个网页中只能用一次,用来放新闻标题或网页的 logo
- h2 ~ h6 没有使用次数的限制
07-段落标签
一般用在新闻段落、文章段落、产品描述信息等等。
显示特点:
08-换行和水平线
09-文本格式化标签
作用:为文本添加特殊格式,以突出重点。常见的文本格式:加粗、倾斜、下划线、删除线等。
提示:strong、em、ins、del 标签自带强调含义(语义)。
10-图像标签
作用:在网页中插入图片
src用于指定图像的位置和名称,是 的必须属性。
图像属性
属性语法
- 属性名=”属性值”
- 属性写在尖括号里面,标签名后面,标签名和属性之间用空格隔开,不区分先后顺序
11-路径
概念:路径指的是查找文件时,从起点到终点经历的路线。
路径分类:
- 相对路径:从当前文件位置出发查找目标文件
- 绝对路径:从盘符出发查找目标文件
- Windows 电脑从盘符出发
- Mac 电脑从根目录出发
相对路径
查找方式:从当前文件位置出发查找目标文件
特殊符号:
- / 表示进入某个文件夹里面 → 文件夹名/
- **. ** 表示当前文件所在文件夹 → ./
- .. 表示当前文件的上一级文件夹 → ../
绝对路径
查找方式:Windows 电脑从盘符出发;Mac 电脑从根目录(/)出发
1
| <img src="C:\images\mao.jpg">
|
提示
- Windows 默认是 \ ,其他系统是 /,建议统一写为 /
- 特殊的绝对路径 → 文件的在线网址:https://www.itheima.com/images/logo.png “,应用场景:网页底部友情链接
12-超链接标签
作用:点击跳转到其他页面。
1
| <a href="https://www.baidu.com">跳转到百度</a>
|
href 属性值是跳转地址,是超链接的必须属性。
超链接默认是在当前窗口跳转页面,添加 target=”_blank” 实现新窗口打开页面。
拓展:开发初期,不确定跳转地址,则 href 属性值写为 #,表示空链接,页面不会跳转,在当前页面刷新一次。
1 2 3 4 5 6 7 8
| <a href="https://www.baidu.com/">跳转到百度</a>
<a href="./01-标签的写法.html" target="_blank">跳转到01-标签的写法</a>
<a href="#">空链接</a>
|
13-音频
1
| <audio src="音频的 URL"></audio>
|
常用属性
拓展:书写 HTML5 属性时,如果属性名和属性值相同,可以简写为一个单词。
1 2
| <audio src="./media/music.mp3" controls loop autoplay></audio>
|
14-视频
1
| <video src="视频的 URL"></video>
|
常用属性
1 2
| <video src="./media/vue.mp4" controls loop muted autoplay></video>
|
15-综合案例一-个人简介
网页制作思路:从上到下,先整体再局部,逐步分析制作
分析内容 → 写代码 → 保存 → 刷新浏览器,看效果
1 2 3 4 5 6 7 8 9 10 11 12 13
| <h1>尤雨溪</h1> <hr> <p>尤雨溪,前端框架<a href="../17-综合案例二/vue简介.html">Vue.js</a>的作者,<a href="#">HTML5</a>版Clear的打造人,独立开源开发者。曾就职于Google Creative Labs和Meteor Development Group。由于工作中大量接触开源的项目<a href="#">JavaScript</a>,最后自己也走上了开源之路,现全职开发和维护<a href="#">Vue.js</a>。
</p> <img src="./photo.jpg" alt="尤雨溪的照片" title="尤雨溪"> <h2>学习经历</h2> <p>尤雨溪毕业于上海复旦附中,在美国完成大学学业,本科毕业于Colgate University,后在Parsons设计学院获得Design & Technology艺术硕士学位,任职于纽约Google Creative Lab。</p> <h2>主要成就</h2> <p>尤雨溪<strong>大学专业并非是计算机专业</strong>,在大学期间他学习专业是室内艺术和艺术史,后来读了美术设计和技术的硕士, <ins>正是在读硕士期间,他偶然接触到了JavaScript ,从此被这门编程语言深深吸引,开启了自己的前端生涯</ins> 。</p> <p>2014年2月,开发了一个前端开发库Vue.js。Vue.js 是构建 Web 界面的 JavaScript 框架,是一个通过简洁的API提供高效的数据绑定和灵活的组件系统。</p> <h2>社会任职</h2> <p>2016年9月3日,在南京的JSConf上,Vue作者尤雨溪正式宣布加盟阿里巴巴Weex团队,尤雨溪称他将以技术顾问的身份加入Weex团队来做 Vue 和 Weex 的 JavaScript runtime 整合,目标是让大家能用 Vue 的语法跨三端。</p>
|
16-综合案例二-Vue简介
1 2 3 4 5 6 7 8
| <h1>Vue.js</h1> <p>Vue (读音 /vjuː/,类似于 view) 是一套用于构建用户界面的渐进式JavaScript框架。 [5] 与其它大型框架不同的是,Vue 被设计为可以自底向上逐层应用。Vue 的核心库只关注视图层,不仅易于上手,还便于与第三方库或既有项目整合。另一方面,当与现代化的工具链以及各种支持类库结合使用时,Vue 也完全能够为复杂的单页应用(SPA)提供驱动。</p> <p>其作者为<a href="../16-综合案例一/个人简介.html" target="_blank">尤雨溪</a></p> <h2>主要功能</h2> <p>Vue.js是一套构建用户界面的渐进式框架。与其他重量级框架不同的是,Vue采用自底向上增量开发的设计。Vue 的核心库只关注视图层,并且非常容易学习,非常容易与其它库或已有项目整合。另一方面,Vue 完全有能力驱动采用单文件组件和Vue生态系统支持的库开发的复杂单页应用。</p> <p>Vue.js 的目标是通过尽可能简单的 API 实现响应的数据绑定和组合的视图组件。</p> <p>Vue.js 自身不是一个全能框架——它只聚焦于视图层。因此它非常容易学习,非常容易与其它库或已有项目整合。另一方面,在与相关工具和支持库一起使用时 [2] ,Vue.js 也能驱动复杂的单页应用。</p> <video src="../media/vue.mp4" controls></video>
|
day02:列表、表格、表单
目标:掌握嵌套关系标签的写法,使用列表标签布局网页
01-列表
作用:布局内容排列整齐的区域。
列表分类:无序列表、有序列表、定义列表。
无序列表
作用:布局排列整齐的不需要规定顺序的区域。
标签:ul 嵌套 li,ul 是无序列表,li 是列表条目。
1 2 3 4 5 6
| <ul> <li>第一项</li> <li>第二项</li> <li>第三项</li> …… </ul>
|
注意事项:
- ul 标签里面只能包裹 li 标签
- li 标签里面可以包裹任何内容
有序列表
作用:布局排列整齐的需要规定顺序的区域。
标签:ol 嵌套 li,ol 是有序列表,li 是列表条目。
1 2 3 4 5 6
| <ol> <li>第一项</li> <li>第二项</li> <li>第三项</li> …… </ol>
|
注意事项:
- ol 标签里面只能包裹 li 标签
- li 标签里面可以包裹任何内容
定义列表
标签:dl 嵌套 dt 和 dd,dl 是定义列表,dt 是定义列表的标题,dd 是定义列表的描述 / 详情。
1 2 3 4 5
| <dl> <dt>列表标题</dt> <dd>列表描述 / 详情</dd> …… </dl>
|
注意事项:
- dl 里面只能包含dt 和 dd
- dt 和 dd 里面可以包含任何内容
02-表格
网页中的表格与 Excel 表格类似,用来展示数据。
基本使用
标签:table 嵌套 tr,tr 嵌套 td / th。
提示:在网页中,表格默认没有边框线,使用 border 属性可以为表格添加边框线。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <table border="1"> <tr> <th>姓名</th> <th>语文</th> <th>数学</th> <th>总分</th> </tr> <tr> <td>张三</td> <td>99</td> <td>100</td> <td>199</td> </tr> <tr> <td>李四</td> <td>98</td> <td>100</td> <td>198</td> </tr> <tr> <td>总结</td> <td>全市第一</td> <td>全市第一</td> <td>全市第一</td> </tr> </table>
|
表格结构标签-了解
作用:用表格结构标签把内容划分区域,让表格结构更清晰,语义更清晰。
提示:表格结构标签可以省略。
合并单元格
作用:将多个单元格合并成一个单元格,以合并同类信息。
合并单元格的步骤:
- 明确合并的目标
- 保留最左最上的单元格,添加属性(取值是数字,表示需要合并的单元格数量)
- 跨行合并,保留最上单元格,添加属性 rowspan
- 跨列合并,保留最左单元格,添加属性 colspan
- 删除其他单元格
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <table border="1"> <thead> <tr> <th>姓名</th> <th>语文</th> <th>数学</th> <th>总分</th> </tr> </thead> <tbody> <tr> <td>张三</td> <td>99</td> <td rowspan="2">100</td> <td>199</td> </tr> <tr> <td>李四</td> <td>98</td> <td>198</td> </tr> </tbody> <tfoot> <tr> <td>总结</td> <td colspan="3">全市第一</td>
</tr> </tfoot> </table>
|
注意:不能跨表格结构标签合并单元格(thead、tbody、tfoot)。
03-表单
作用:收集用户信息。
使用场景:
input 标签 type 属性值不同,则功能不同。
占位文本:提示信息,文本框和密码框都可以使用。
1
| <input type="..." placeholder="提示信息">
|
单选框
常用属性
1 2
| <input type="radio" name="gender" checked> 男 <input type="radio" name="gender"> 女
|
提示:name 属性值自定义。
上传文件
默认情况下,文件上传表单控件只能上传一个文件,添加 multiple 属性可以实现文件多选功能。
1
| <input type="file" multiple>
|
多选框
多选框也叫复选框,默认选中:checked。
1
| <input type="checkbox" checked> 敲前端代码
|
下拉菜单
标签:select 嵌套 option,select 是下拉菜单整体,option是下拉菜单的每一项。
1 2 3 4 5 6 7
| <select> <option>北京</option> <option>上海</option> <option>广州</option> <option>深圳</option> <option selected>武汉</option> </select>
|
默认显示第一项,selected 属性实现默认选中功能。
文本域
作用:多行输入文本的表单控件。
1
| <textarea>默认提示文字</textarea>
|
注意点:
- 实际开发中,使用 CSS 设置 文本域的尺寸
- 实际开发中,一般禁用右下角的拖拽功能
label 标签
作用:网页中,某个标签的说明文本。
经验:用 label 标签绑定文字和表单控件的关系,增大表单控件的点击范围。
- 写法一
- label 标签只包裹内容,不包裹表单控件
- 设置 label 标签的 for 属性值 和表单控件的 id 属性值相同
1 2
| <input type="radio" id="man"> <label for="man">男</label>
|
- 写法二:使用 label 标签包裹文字和表单控件,不需要属性
1
| <label><input type="radio"> 女</label>
|
提示:支持 label 标签增大点击范围的表单控件:文本框、密码框、上传文件、单选框、多选框、下拉菜单、文本域等等。
按钮
1
| <button type="">按钮</button>
|
1 2 3 4 5 6 7 8 9 10 11 12 13
|
<form action=""> 用户名:<input type="text"> <br><br> 密码:<input type="password"> <br><br>
<button type="submit">提交</button> <button type="reset">重置</button> <button type="button">普通按钮</button> </form>
|
提示:按钮需配合 form 标签(表单区域)才能实现对应的功能。
04-语义化
无语义的布局标签
作用:布局网页(划分网页区域,摆放内容)
1 2
| <div>div 标签,独占一行</div> <span>span 标签,不换行</span>
|
有语义的布局标签
05-字符实体
06-综合案例一-体育新闻列表
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <ul> <li> <img src="./images/1.jpg" alt=""> <h3>主帅安东尼奥回西班牙休假 国青抵达海口进行隔离</h3> </li> <li> <img src="./images/2.jpg" alt=""> <h3>梅州主帅:申花有强有力的教练组 球员体能水平高</h3> </li> <li> <img src="./images/3.jpg" alt=""> <h3>马德兴:00后球员将首登亚洲舞台 调整心态才务实</h3> </li> </ul>
|
07-综合案例二-注册信息
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
| <h1>注册信息</h1> <form action=""> <h2>个人信息</h2> <label>姓名:</label><input type="text" placeholder="请输入真实姓名"> <br><br> <label>密码:</label><input type="password" placeholder="请输入密码"> <br><br> <label>确认密码:</label><input type="password" placeholder="请输入确认密码"> <br><br> <label>性别:</label> <label><input type="radio" name="gender"> 男</label> <label><input type="radio" name="gender" checked> 女</label> <br><br> <label>居住城市:</label> <select> <option>北京</option> <option>上海</option> <option>广州</option> <option>深圳</option> <option>武汉</option> </select> <h2>教育经历</h2> <label>最高学历:</label> <select> <option>博士</option> <option>硕士</option> <option>本科</option> <option>大专</option> </select> <br><br> <label>学校名称:</label><input type="text"> <br><br> <label>所学专业:</label><input type="text"> <br><br> <label>在校时间:</label> <select> <option>2015</option> <option>2016</option> <option>2017</option> <option>2018</option> </select> -- <select> <option>2019</option> <option>2020</option> <option>2021</option> <option>2022</option> </select> <h2>工作经历</h2> <label>公司名称:</label><input type="text"> <br><br> <label>工作描述:</label> <br> <textarea></textarea> <br><br> <input type="checkbox"><label>已阅读并同意以下协议:</label> <ul> <li><a href="#">《用户服务协议》</a></li> <li><a href="#">《隐私政策》</a></li> </ul> <br><br> <button>免费注册</button> <button type="reset">重新填写</button> </form>
|
day03-CSS基础
目标:掌握 CSS 属性基本写法,能够使用文字相关属性美化文章页。
01-CSS初体验
层叠样式表 (Cascading Style Sheets,缩写为 CSS),是一种 样式表 语言,用来描述 HTML 文档的呈现(美化内容)。
书写位置:title 标签下方添加 style 双标签,style 标签里面书写 CSS 代码。
1 2 3 4 5 6 7 8 9 10
| <title>CSS 初体验</title> <style> p { color: red; } </style>
<p>体验 CSS</p>
|
提示:属性名和属性值成对出现 → 键值对。
02-CSS引入方式
- 内部样式表:学习使用
- 外部样式表:开发使用
- CSS 代码写在单独的 CSS 文件中(**.css**)
- 在 HTML 使用 link 标签引入
1
| <link rel="stylesheet" href="./my.css">
|
1
| <div style="color: red; font-size:20px;">这是 div 标签</div>
|
03-选择器
作用:查找标签,设置样式。
标签选择器
标签选择器:使用标签名作为选择器 → 选中同名标签设置相同的样式。
例如:p, h1, div, a, img……
1 2 3 4 5 6
| <style> p { color: red; } </style>
|
注意:标签选择器无法差异化同名标签的显示效果。
类选择器
作用:查找标签,差异化设置标签的显示效果。
步骤:
- 定义类选择器 → .类名
- 使用类选择器 → 标签添加 class=”类名”
1 2 3 4 5 6 7 8 9 10
| <style> .red { color: red; } </style>
<div class="red">这是 div 标签</div> <div class="red size">div 标签</div>
|
注意:
- 类名自定义,不要用纯数字或中文,尽量用英文命名
- 一个类选择器可以供多个标签使用
- 一个标签可以使用多个类名,类名之间用空格隔开
开发习惯:类名见名知意,多个单词可以用 - 连接,例如:news-hd。
id选择器
作用:查找标签,差异化设置标签的显示效果。
场景:id 选择器一般配合 JavaScript 使用,很少用来设置 CSS 样式
步骤:
- 定义 id 选择器 → #id名
- 使用 id 选择器 → 标签添加 id= “id名”
1 2 3 4 5 6 7 8 9
| <style> #red { color: red; } </style>
<div id="red">这是 div 标签</div>
|
规则:同一个 id 选择器在一个页面只能使用一次。
通配符选择器
作用:查找页面所有标签,设置相同样式。
通配符选择器: *,不需要调用,浏览器自动查找页面所有标签,设置相同的样式
经验:通配符选择器可以用于清除标签的默认样式,例如:标签默认的外边距、内边距。
04-盒子尺寸和背景色
05-文字控制属性
字体大小
- 属性名:font-size
- 属性值:文字尺寸,PC 端网页最常用的单位 px
经验:谷歌浏览器默认字号是16px。
字体样式(是否倾斜)
作用:清除文字默认的倾斜效果
属性名:font-style
属性值
行高
作用:设置多行文本的间距
属性名:line-height
属性值
- 数字 + px
- 数字(当前标签font-size属性值的倍数)
1 2 3 4 5
| line-height: 30px;
line-height: 2;
|
行高的测量方法:从一行文字的最顶端(最底端)量到下一行文字的最顶端(最底端)。
单行文字垂直居中
垂直居中技巧:行高属性值等于盒子高度属性值
注意:该技巧适用于单行文字垂直居中效果
1 2 3 4 5 6 7
| div { height: 100px; background-color: skyblue;
line-height: 100px; }
|
字体族
属性名:font-family
属性值:字体名
拓展(了解):font-family属性值可以书写多个字体名,各个字体名用逗号隔开,执行顺序是从左向右依次查找
- font-family 属性最后设置一个字体族名,网页开发建议使用无衬线字体
1
| font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
|
font复合属性
使用场景:设置网页文字公共样式
复合属性:属性的简写方式,一个属性对应多个值的写法,各个属性值之间用空格隔开。
font: 是否倾斜 是否加粗 字号/行高 字体(必须按顺序书写)
1 2 3
| div { font: italic 700 30px/2 楷体; }
|
注意:字号和字体值必须书写,否则 font 属性不生效 。
文本缩进
属性名:text-indent
属性值:
- 数字 + px
- 数字 + em(推荐:1em = 当前标签的字号大小)
1 2 3
| p { text-indent: 2em; }
|
文本对齐方式
作用:控制内容水平对齐方式
属性名:text-align
text-align本质是控制内容的对齐方式,属性要设置给内容的父级。
1 2 3 4 5 6 7 8 9
| <style> div { text-align: center; } </style>
<div> <img src="./images/1.jpg" alt=""> </div>
|
文本修饰线
属性名: text-decoration
color 文字颜色
提示:只要属性值为颜色,都可以使用上述四种颜色表示方式,例如:背景色。
06-调试工具
作用:检查、调试代码;帮助程序员发现代码问题、解决问题
- 打开调试工具
- 浏览器窗口内任意位置 / 选中标签 → 鼠标右键 → 检查
- F12
- 使用调试工具
07-综合案例一-新闻详情
网页制作思路:
- 从上到下,先整体再局部
- 先标签,再 CSS 美化
HTML标签
1 2 3 4 5 6 7 8 9
| <h1>在希望的田野上 | 湖北秋收开镰 各地多举措保增产增收</h1> <div>来源:央视网 | 2222年12月12日 12:12:12</div> <p><strong>央视网消息:</strong>眼下,湖北省秋收开镰已有一周多的时间。水稻收割已经超过四成,玉米收割七成。湖北省通过大力推广新品种水稻,建设高标准农田等一系列措施,为秋粮稳产提供有力支撑。</p> <p>中稻占据了湖北全年粮食产量的一半以上。在湖北的主产区荆门市,370万亩中稻已经收割四成以上。</p> <div class="pic"> <img src="./1.jpg" alt=""> </div> <p>王化林说的新品种,是湖北省研发的杂交水稻“华夏香丝”,不仅产量高,还具有抗病、抗倒、抗高温的特性。在荆门漳河镇的一工程示范田内,像“华夏香丝”这样抗旱节水的品种还有20多个,这些水稻新品将在荆门全面推广,确保来年增产增收。</p> <p>此外,湖北还大力推进高标准农田建设。截至今年6月,已建成3980万亩高标准农田。目前,湖北全省仍有1800多万亩中稻正在有序收割中,预计10月中旬收割完毕。</p>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <style> h1 { text-align: center; font-weight: 400; font-size: 30px; color: #333; }
div { font-size: 14px; color: #999; }
p { text-indent: 2em; font-size: 18px; color: #333; }
.pic { text-align: center; } </style>
|
08-综合案例二-CSS简介
HTML标签
1 2 3 4 5 6 7 8
| <h1>CSS(层叠样式表)</h1> <p>层叠样式表 (Cascading Style Sheets,缩写为 CSS),是一种 <a href="#">样式表</a> 语言,用来描述 HTML 或 XML(包括如 SVG、MathML、XHTML 之类的 XML 分支语言)文档的呈现。CSS 描述了在屏幕、纸质、音频等其它媒体上的元素应该如何被渲染的问题。</p> <p><strong>CSS 是开放网络的核心语言之一</strong>,由 W3C 规范 实现跨浏览器的标准化。CSS 节省了大量的工作。 样式可以通过定义保存在外部.css 文件中,同时控制多个网页的布局,这意味着开发者不必经历在所有网页上编辑布局的麻烦。CSS 被分为不同等级:CSS1 现已废弃, CSS2.1 是推荐标准, CSS3 分成多个小模块且正在标准化中。</p> <ul> <li>CSS 介绍 如果你是 Web 开发的新手,请务必阅读我们的 CSS 基础 文章以学习 CSS 的含义和用法。</li> <li>CSS 教程 我们的 CSS 学习区 包含了丰富的教程,它们覆盖了全部基础知识,能使你在 CSS 之路上从初出茅庐到游刃有余。</li> <li>CSS 参考 针对资深 Web 开发者的 <a href="#">详细参考手册</a> ,描述了 CSS 的各个属性与概念。</li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <style> h1 { color: #333; }
p { text-indent: 2em; font-size: 14px; color: #444; line-height: 30px; }
a { color: #0069c2; }
li { font-size: 14px; color: #444; line-height: 30px; } </style>
|
day04-CSS进阶
目标:掌握复合选择器作用和写法;使用background属性添加背景效果
01-复合选择器
定义:由两个或多个基础选择器,通过不同的方式组合而成。
作用:更准确、更高效的选择目标元素(标签)。
后代选择器
后代选择器:选中某元素的后代元素。
选择器写法:父选择器 子选择器 { CSS 属性},父子选择器之间用空格隔开。
1 2 3 4 5 6 7 8 9
| <style> div span { color: red; } </style> <span> span 标签</span> <div> <span>这是 div 的儿子 span</span > </div>
|
子代选择器
子代选择器:选中某元素的子代元素(最近的子级)。
选择器写法:父选择器 > 子选择器 { CSS 属性},父子选择器之间用 > 隔开。
1 2 3 4 5 6 7 8 9 10 11 12 13
| <style> div > span { color: red; } </style>
<div> <span>这是 div 里面的 span</span> <p> <span>这是 div 里面的 p 里面的 span</span> </p> </div>
|
并集选择器
并集选择器:选中多组标签设置相同的样式。
选择器写法:选择器1, 选择器2, …, 选择器N { CSS 属性},选择器之间用 , 隔开。
1 2 3 4 5 6 7 8 9 10 11
| <style> div, p, span { color: red; } </style>
<div> div 标签</div> <p>p 标签</p> <span>span 标签</span>
|
交集选择器
交集选择器:选中同时满足多个条件的元素。
选择器写法:选择器1选择器2 { CSS 属性},选择器之间连写,没有任何符号。
1 2 3 4 5 6 7 8 9
| <style> p.box { color: red; } </style>
<p class="box">p 标签,使用了类选择器 box</p> <p>p 标签</p> <div class="box">div 标签,使用了类选择器 box</div>
|
注意:如果交集选择器中有标签选择器,标签选择器必须书写在最前面。
伪类选择器
伪类选择器:伪类表示元素状态,选中元素的某个状态设置样式。
鼠标悬停状态:选择器:hover { CSS 属性 }
1 2 3 4 5 6 7 8 9 10 11
| <style> a:hover { color: red; } .box:hover { color: green; } </style>
<a href="#">a 标签</a> <div class="box">div 标签</div>
|
超链接伪类
提示:如果要给超链接设置以上四个状态,需要按 LVHA 的顺序书写。
经验:工作中,一个 a 标签选择器设置超链接的样式, hover状态特殊设置
1 2 3 4 5 6 7
| a { color: red; }
a:hover { color: green; }
|
02-CSS特性
CSS特性:化简代码 / 定位问题,并解决问题
继承性
继承性:子级默认继承父级的文字控制属性。
注意:如果标签有默认文字样式会继承失败。 例如:a 标签的颜色、标题的字体大小。
层叠性
特点:
- 相同的属性会覆盖:后面的 CSS 属性覆盖前面的 CSS 属性
- 不同的属性会叠加:不同的 CSS 属性都生效
1 2 3 4 5 6 7 8 9 10 11 12
| <style> div { color: red; font-weight: 700; } div { color: green; font-size: 30px; } </style>
<div>div 标签</div>
|
注意:选择器类型相同则遵循层叠性,否则按选择器优先级判断。
优先级
优先级:也叫权重,当一个标签使用了多种选择器时,基于不同种类的选择器的匹配规则。
1 2 3 4 5 6 7 8 9 10
| <style> div { color: red; } .box { color: green; } </style>
<div class="box">div 标签</div>
|
基础选择器
规则:选择器优先级高的样式生效。
公式:通配符选择器 < 标签选择器 < 类选择器 < id选择器 < 行内样式 < !important
(选中标签的范围越大,优先级越低)
复合选择器-叠加
叠加计算:如果是复合选择器,则需要权重叠加计算。
公式:(每一级之间不存在进位)
规则:
- 从左向右依次比较选个数,同一级个数多的优先级高,如果个数相同,则向后比较
- !important 权重最高
- 继承权重最低
03-Emmet 写法
Emmet写法:代码的简写方式,输入缩写 VS Code 会自动生成对应的代码。
04-背景属性
背景图
网页中,使用背景图实现装饰性的图片效果。
- 属性名:background-image(bgi)
- 属性值:url(背景图 URL)
1 2 3 4 5 6
| div { width: 400px; height: 400px;
background-image: url(./images/1.png); }
|
提示:背景图默认有平铺(复制)效果。
平铺方式
属性名:background-repeat(bgr)
1 2 3 4 5 6 7 8
| div { width: 400px; height: 400px; background-color: pink; background-image: url(./images/1.png);
background-repeat: no-repeat; }
|
背景图位置
属性名:background-position(bgp)
属性值:水平方向位置 垂直方向位置
- 坐标
- 水平:正数向右;负数向左
- 垂直:正数向下;负数向上
1 2 3 4 5 6 7 8 9 10 11
| div { width: 400px; height: 400px; background-color: pink; background-image: url(./images/1.png); background-repeat: no-repeat;
background-position: center bottom; background-position: 50px -100px; background-position: 50px center; }
|
提示:
- 关键字取值方式写法,可以颠倒取值顺序
- 可以只写一个关键字,另一个方向默认为居中;数字只写一个值表示水平方向,垂直方向为居中
背景图缩放
作用:设置背景图大小
属性名:background-size(bgz)
常用属性值:
关键字
- cover:等比例缩放背景图片以完全覆盖背景区,可能背景图片部分看不见
- contain:等比例缩放背景图片以完全装入背景区,可能背景区部分空白
百分比:根据盒子尺寸计算图片大小
数字 + 单位(例如:px)
1 2 3 4 5 6 7 8 9 10
| div { width: 500px; height: 400px; background-color: pink; background-image: url(./images/1.png); background-repeat: no-repeat; background-size: cover; background-size: contain; }
|
提示:工作中,图片比例与盒子比例相同,使用 cover 或 contain 缩放背景图效果相同。
背景图固定
作用:背景不会随着元素的内容滚动。
属性名:background-attachment(bga)
属性值:fixed
1 2 3 4 5
| body { background-image: url(./images/bg.jpg); background-repeat: no-repeat; background-attachment: fixed; }
|
背景复合属性
属性名:background(bg)
属性值:背景色 背景图 背景图平铺方式 背景图位置/背景图缩放 背景图固定(空格隔开各个属性值,不区分顺序)
1 2 3 4 5 6
| div { width: 400px; height: 400px;
background: pink url(./images/1.png) no-repeat right center/cover; }
|
05-显示模式
显示模式:标签(元素)的显示方式。
作用:布局网页的时候,根据标签的显示模式选择合适的标签摆放内容。
块级元素
特点:
- 独占一行
- 宽度默认是父级的100%
- 添加宽高属性生效
行内元素
特点:
- 一行可以显示多个
- 设置宽高属性不生效
- 宽高尺寸由内容撑开
行内块元素
特点:
- 一行可以显示多个
- 设置宽高属性生效
- 宽高尺寸也可以由内容撑开
转换显示模式
属性:display
06-综合案例一-热词
HTML标签
1 2 3 4 5
| <a href="#">HTML</a> <a href="#">CSS</a> <a href="#">JavaScript</a> <a href="#">Vue</a> <a href="#">React</a>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <style>
a { display: block; width: 200px; height: 80px; background-color: #3064bb; color: #fff; text-decoration: none; text-align: center; line-height: 80px; font-size: 18px; }
a:hover { background-color: #608dd9; } </style>
|
07-综合案例二 – banner 效果
HTML标签
1 2 3 4 5
| <div class="banner"> <h2>让创造产生价值</h2> <p>我们希望小游戏平台可以提供无限的可能性,让每一个创作者都可以将他们的才华和创意传递给用户。</p> <a href="#">我要报名</a> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| <style> .banner { height: 500px; background-color: #f3f3f4; background-image: url(./images/bk.png); background-repeat: no-repeat; background-position: left bottom;
text-align: right; color: #333; }
.banner h2 { font-size: 36px; font-weight: 400; line-height: 100px; }
.banner p { font-size: 20px; }
.banner a { width: 125px; height: 40px; background-color: #f06b1f;
display: inline-block;
text-align: center; line-height: 40px; color: #fff; text-decoration: none; font-size: 20px; } </style>
|
day05-盒子模型
目标:掌握盒子模型组成部分,使用盒子模型布局网页区域
01-选择器
结构伪类选择器
基本使用
作用:根据元素的结构关系查找元素。
1 2 3
| li:first-child { background-color: green; }
|
:nth-child(公式)
提示:公式中的n取值从 0 开始。
伪元素选择器
作用:创建虚拟元素(伪元素),用来摆放装饰性的内容。
1 2 3 4 5 6
| div::before { content: "before 伪元素"; } div::after { content: "after 伪元素"; }
|
注意点:
- 必须设置 content: ””属性,用来 设置伪元素的内容,如果没有内容,则引号留空即可
- 伪元素默认是行内显示模式
- 权重和标签选择器相同
02-PxCook
PxCook(像素大厨) 是一款切图设计工具软件。支持PSD文件的文字、颜色、距离自动智能识别。
- 开发面板(自动智能识别)
- 设计面板(手动测量尺寸和颜色)
使用方法:创建项目 → 输入 项目名称、项目类型 Web → 单击按钮【创建项目】 → 单击按钮【添加】,导入设计稿
03-盒子模型
作用:布局网页,摆放盒子和内容。
盒子模型-组成
- 内容区域 – width & height
- 内边距 – padding(出现在内容与盒子边缘之间)
- 边框线 – border
- 外边距 – margin(出现在盒子外面)
1 2 3 4 5 6 7 8
| div { margin: 50px; border: 5px solid brown; padding: 20px; width: 200px; height: 200px; background-color: pink; }
|
边框线
四个方向
属性名:border(bd)
属性值:边框线粗细 线条样式 颜色(不区分顺序)
1 2 3 4 5 6
| div { border: 5px solid brown; width: 200px; height: 200px; background-color: pink; }
|
单方向边框线
属性名:border-方位名词(bd+方位名词首字母,例如,bdl)
属性值:边框线粗细 线条样式 颜色(不区分顺序)
1 2 3 4 5 6 7 8 9
| div { border-top: 2px solid red; border-right: 3px dashed green; border-bottom: 4px dotted blue; border-left: 5px solid orange; width: 200px; height: 200px; background-color: pink; }
|
内边距
作用:设置 内容 与 盒子边缘 之间的距离。
- 属性名:padding / padding-方位名词
1 2 3 4 5 6 7 8 9 10 11 12
| div { padding: 30px; padding-top: 10px; padding-right: 20px; padding-bottom: 40px; padding-left: 80px; width: 200px; height: 200px; background-color: pink; }
|
提示:添加 padding 会撑大盒子。
技巧:从上开始顺时针赋值,当前方向没有数值则与对面取值相同。
尺寸计算
默认情况:盒子尺寸 = 内容尺寸 + border 尺寸 + 内边距尺寸
结论:给盒子加 border / padding 会撑大盒子
解决:
- 手动做减法,减掉 border / padding 的尺寸
- 內减模式:box-sizing: border-box
外边距
作用:拉开两个盒子之间的距离
属性名:margin
提示:与 padding 属性值写法、含义相同
版心居中
左右 margin 值 为 auto(盒子要有宽度)
1 2 3 4 5 6
| div { margin: 0 auto; width: 1000px; height: 200px; background-color: pink; }
|
清除默认样式
清除标签默认的样式,比如:默认的内外边距。
1 2 3 4 5 6 7 8 9 10
| * { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
|
元素溢出
作用:控制溢出元素的内容的显示方式。
属性名:overflow
外边距问题
合并现象
场景:垂直排列的兄弟元素,上下 margin 会合并
现象:取两个 margin 中的较大值生效
1 2 3 4 5 6
| .one { margin-bottom: 50px; } .two { margin-top: 20px; }
|
外边距塌陷
场景:父子级的标签,子级的添加 上外边距 会产生塌陷问题
现象:导致父级一起向下移动
1 2 3 4 5 6
| .son { margin-top: 50px; width: 100px; height: 100px; background-color: orange; }
|
解决方法:
- 取消子级margin,父级设置padding
- 父级设置 overflow: hidden
- 父级设置 border-top
行内元素 – 内外边距问题
场景:行内元素添加 margin 和 padding,无法改变元素垂直位置
解决方法:给行内元素添加 line-height 可以改变垂直位置
1 2 3 4 5 6 7
| span { margin: 50px; padding: 20px; line-height: 100px; }
|
圆角
作用:设置元素的外边框为圆角。
属性名:border-radius
属性值:数字+px / 百分比
提示:属性值是圆角半径
技巧:从左上角开始顺时针赋值,当前角没有数值则与对角取值相同。
- 正圆形状:给正方形盒子设置圆角属性值为 宽高的一半 / 50%
1 2 3 4 5 6 7
| img { width: 200px; height: 200px; border-radius: 100px; border-radius: 50%; }
|
- 胶囊形状:给长方形盒子设置圆角属性值为 盒子高度的一半
1 2 3 4 5 6
| div { width: 200px; height: 80px; background-color: orange; border-radius: 40px; }
|
盒子阴影(拓展)
作用:给元素设置阴影效果
属性名:box-shadow
属性值:X 轴偏移量 Y 轴偏移量 模糊半径 扩散半径 颜色 内外阴影
注意:
- X 轴偏移量 和 Y 轴偏移量 必须书写
- 默认是外阴影,内阴影需要添加 inset
1 2 3 4 5 6
| div { width: 200px; height: 80px; background-color: orange; box-shadow: 2px 5px 10px 0 rgba(0, 0, 0, 0.5) inset; }
|
04-综合案例-产品卡片
CSS 书写顺序:
- 盒子模型属性
- 文字样式
- 圆角、阴影等修饰属性
HTML标签
1 2 3 4 5
| <div class="product"> <img src="./images/liveSDK.svg" alt=""> <h4>抖音直播SDK</h4> <p>包含抖音直播看播功能</p> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <style> * { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #f1f1f1; }
.product { margin: 50px auto; padding-top: 40px;
width: 270px; height: 253px; background-color: #fff; text-align: center;
border-radius: 10px; }
.product h4 { margin-top: 20px; margin-bottom: 12px; font-size: 18px; color: #333; font-weight: 400; }
.product p { font-size: 12px; color: #555; } </style>
|
05-综合案例二 – 新闻列表
整体布局
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <style> * { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
a { text-decoration: none; }
.news { margin: 100px auto; width: 360px; height: 200px; } </style>
<div class="news"></div>
|
标题区域
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <style> .news .hd { height: 34px; background-color: #eee; border: 1px solid #dbdee1; border-left: 0; }
.news .hd a { margin-top: -1px; display: block; border-top: 3px solid #ff8400; border-right: 1px solid #dbdee1; width: 48px; height: 34px; background-color: #fff;
text-align: center; line-height: 32px; font-size: 14px; color: #333; } </style>
<div class="hd"><a href="#">新闻</a></div>
|
内容区域
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <style> .news .bd { padding: 5px; }
.news .bd li { padding-left: 15px; background-image: url(./images/square.png); background-repeat: no-repeat; background-position: 0 center; }
.news .bd li a { padding-left: 20px; background: url(./images/img.gif) no-repeat 0 center;
font-size: 12px; color: #666; line-height: 24px; }
.news .bd li a:hover { color: #ff8400; } </style>
<div class="bd"> <ul> <li><a href="#">点赞“新农人” 温暖的伸手</a></li> <li><a href="#">在希望的田野上...</a></li> <li><a href="#">“中国天眼”又有新发现 已在《自然》杂志发表</a></li> <li><a href="#">急!这个领域,缺人!月薪4万元还不好招!啥情况?</a></li> <li><a href="#">G9“带货”背后:亏损面持续扩大,竞争环境激烈</a></li> <li><a href="#">多地力推二手房“带押过户”,有什么好处?</a></li> </ul> </div>
|
day06-Flex布局
目标:熟练使用 Flex 完成结构化布局
01-标准流
标准流也叫文档流,指的是标签在页面中默认的排布规则,例如:块元素独占一行,行内元素可以一行显示多个。
02-浮动
基本使用
作用:让块元素水平排列。
属性名:float
属性值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <style> .one { width: 100px; height: 100px; background-color: brown;
float: left; }
.two { width: 200px; height: 200px; background-color: orange;
float: right; } </style>
<div class="one">one</div> <div class="two">two</div>
|
特点:
- 浮动后的盒子顶对齐
- 浮动后的盒子具备行内块特点
- 浮动后的盒子脱标,不占用标准流的位置
产品区域布局
HTML标签
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <div class="product"> <div class="left"></div> <div class="right"> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| <style> * { margin: 0; padding: 0; }
li { list-style: none; }
.product { margin: 50px auto; width: 1226px; height: 628px; background-color: pink; }
.left { float: left; width: 234px; height: 628px; background-color: skyblue; }
.right { float: right; width: 978px; height: 628px; background-color: brown; }
.right li { float: left; margin-right: 14px; margin-bottom: 14px; width: 234px; height: 300px; background-color: orange; }
.right li:nth-child(4n) { margin-right: 0; }
</style>
|
清除浮动
场景:浮动元素会脱标,如果父级没有高度,子级无法撑开父级高度(可能导致页面布局错乱)
解决方法:清除浮动(清除浮动带来的影响)
场景搭建
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <style> .top { margin: 10px auto; width: 1200px; background-color: pink; }
.left { float: left; width: 200px; height: 300px; background-color: skyblue; }
.right { float: right; width: 950px; height: 300px; background-color: orange; }
.bottom { height: 100px; background-color: brown; }
</style>
<div class="top"> <div class="left"></div> <div class="right"></div> </div> <div class="bottom"></div>
|
额外标签法
在父元素内容的最后添加一个块级元素,设置 CSS 属性 clear: both
1 2 3 4 5 6 7 8 9 10 11
| <style> .clearfix { clear: both; } </style>
<div class="father"> <div class="left"></div> <div class="right"></div> <div class="clearfix"></div> </div>
|
单伪元素法
- 准备 after 伪元素
1 2 3 4 5
| .clearfix::after { content: ""; display: block; clear: both; }
|
- 父级使用 clearfix 类
1
| <div class="father clearfix"></div>
|
双伪元素法
- 准备 after 和 before 伪元素
1 2 3 4 5 6 7 8 9 10 11 12
|
.clearfix::before, .clearfix::after { content: ""; display: table; }
.clearfix::after { clear: both; }
|
- 父级使用 clearfix 类
1
| <div class="father clearfix"></div>
|
overfow法
1 2 3 4 5 6 7 8
| .father { margin: 10px auto; width: 1200px; background-color: pink;
overflow: hidden; }
|
03-Flex布局
Flex 布局也叫弹性布局,是浏览器提倡的布局模型,非常适合结构化布局,提供了强大的空间分布和对齐能力。
Flex 模型不会产生浮动布局中脱标现象,布局网页更简单、更灵活。
Flex组成
设置方式:给父元素设置 display: flex,子元素可以自动挤压或拉伸
组成部分:
- 弹性容器
- 弹性盒子
- 主轴:默认在水平方向
- 侧轴 / 交叉轴:默认在垂直方向
主轴对齐方式
属性名:justify-content
侧轴对齐方式
- align-items:当前弹性容器内所有弹性盒子的侧轴对齐方式(给弹性容器设置)
- align-self:单独控制某个弹性盒子的侧轴对齐方式(给弹性盒子设置)
修改主轴方向
主轴默认在水平方向,侧轴默认在垂直方向
属性名:flex-direction
弹性伸缩比
作用:控制弹性盒子的主轴方向的尺寸。
属性名:flex
属性值:整数数字,表示占用父级剩余尺寸的份数。
弹性盒子换行
弹性盒子可以自动挤压或拉伸,默认情况下,所有弹性盒子都在一行显示。
属性名:flex-wrap
属性值
行内对齐方式
属性名:align-content
注意:该属性对单行弹性盒子模型无效。
04-综合案例 – 抖音解决方案
整体布局
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <style> * { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
.box { margin: 50px auto; width: 1200px; height: 418px; border: 1px solid #ddd; border-radius: 10px; } </style>
<div class="box"></div>
|
列表布局
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <style> .box ul { display: flex; flex-wrap: wrap; justify-content: space-between;
align-content: space-between;
padding: 90px 40px 90px 60px; height: 418px; }
.box li { display: flex; width: 500px; height: 88px; } </style>
<div class="box"> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> </div>
|
内容样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| <style> .box .pic { margin-right: 15px; }
.box .text h4 { line-height: 40px; font-size: 20px; font-weight: 400; color: #333; }
.box .text p { font-size: 14px; color: #666; } </style>
<ul> <li> <div class="pic"> <img src="./images/1.svg" alt=""> </div> <div class="text"> <h4>一键发布多端</h4> <p>发布视频到抖音短视频、西瓜视频及今日头条</p> </div> </li> <li> <div class="pic"> <img src="./images/2.svg" alt=""> </div> <div class="text"> <h4>管理视频内容</h4> <p>支持修改已发布稿件状态和实时查询视频审核状态</p> </div> </li> <li> <div class="pic"> <img src="./images/3.svg" alt=""> </div> <div class="text"> <h4>发布携带组件</h4> <p>支持分享内容携带小程序、地理位置信息等组件,扩展内容及突出地域性</p> </div> </li> <li> <div class="pic"> <img src="./images/4.svg" alt=""> </div> <div class="text"> <h4>数据评估分析</h4> <p>获取视频在对应产品内的数据表现、获取抖音热点,及时进行表现评估</p> </div> </li> </ul>
|
day07-学成在线
01-项目目录
网站根目录是指存放网站的第一层文件夹,内部包含当前网站的所有素材,包含 HTML、CSS、图片、JavaScript等等。
1 2 3
| <link rel="stylesheet" href="./css/base.css"> <link rel="stylesheet" href="./css/index.css">
|
02-版心居中
1 2 3 4 5 6 7 8
| .wrapper { margin: 0 auto; width: 1200px; }
body { background-color: #f3f5f7; }
|
03-布局思路
- 布局思路:先整体再局部,从外到内,从上到下,从左到右
- CSS 实现思路
- 画盒子,调整盒子范围 → 宽高背景色
- 调整盒子位置 → flex 布局、内外边距
- 控制图片、文字内容样式
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13
| <div class="header"> <div class="wrapper"> <div class="logo">logo</div> <div class="nav">导航</div> <div class="search">search</div> <div class="user">用户</div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10
| .header { height: 100px; background-color: #fff; }
.header .wrapper { padding-top: 29px; display: flex; }
|
logo 功能:
- 单击跳转到首页
- 搜索引擎优化:提升网站百度搜索排名
实现方法:
- 标签结构:h1 > a > 网站名称(搜索关键字)
1 2 3
| <div class="logo"> <h1><a href="#">学成在线</a></h1> </div>
|
1 2 3 4 5 6 7 8
| .logo a { display: block; width: 195px; height: 41px; background-image: url(../images/logo.png); font-size: 0; }
|
实现方法:
- 标签结构:ul > li * 3 > a
- 优势:避免堆砌 a 标签,网站搜索排名降级
HTML结构
1 2 3 4 5
| <ul> <li><a href="#" class="active">首页</a></li> <li><a href="#">课程</a></li> <li><a href="#">职业规划</a></li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| .nav { margin-left: 102px; }
.nav ul { display: flex; }
.nav li { margin-right: 24px; }
.nav li a { display: block; padding: 6px 8px; line-height: 27px; font-size: 19px; }
.nav li .active, .nav li a:hover { border-bottom: 2px solid #00a4ff; }
|
HTML结构
1
| <div class="search"></div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10
| .search { display: flex; margin-left: 64px; padding-left: 19px; padding-right: 12px; width: 412px; height: 40px; background-color: #f3f5f7; border-radius: 20px; }
|
HTML结构
1 2 3 4
| <div class="search"> <input type="text" placeholder="请输入关键词"> <a href="#"></a> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| .search input { flex: 1; border: 0; background-color: transparent; outline: none; }
.search input::placeholder { font-size: 14px; color: #999; }
.search a { align-self: center; width: 16px; height: 16px; background-image: url(../images/search.png); }
|
HTML结构
1 2 3 4 5 6
| <div class="user"> <a href="#"> <img src="./uploads/user.png" alt=""> <span>播仔学前端</span> </a> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| .user { margin-left: 32px; margin-top: 4px; }
.user img { margin-right: 7px; vertical-align: middle; }
.user span { font-size: 16px; color: #666; }
|
10-banner区域-布局
HTML结构
1 2 3 4 5 6
| <div class="banner"> <div class="wrapper"> <div class="left">left</div> <div class="right">right</div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12
| .banner { height: 420px; background-color: #0092cb; }
.banner .wrapper { display: flex; justify-content: space-between; height: 420px; background-image: url(../uploads/banner.png); }
|
11-banner区域-侧导航
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13
| <div class="left"> <ul> <li><a href="#">前端开发</a></li> <li><a href="#">后端开发</a></li> <li><a href="#">移动开发</a></li> <li><a href="#">人工智能</a></li> <li><a href="#">商业预测</a></li> <li><a href="#">云计算&大数据</a></li> <li><a href="#">运维&测试</a></li> <li><a href="#">UI设计</a></li> <li><a href="#">产品</a></li> </ul> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| .banner .left { padding: 3px 20px; width: 191px; height: 420px; background-color: rgba(0,0,0,0.42); }
.banner .left a { display: block; height: 46px; background: url(../images/right.png) no-repeat right center; line-height: 46px; font-size: 16px; color: #fff; }
.banner .left a:hover { background-image: url(../images/right-hover.png); color: #00a4ff; }
|
12-banner区域-课程表布局
HTML布局
1 2 3 4
| <div class="right"> <h3>我的课程表</h3> <div class="content">1</div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| .banner .right { margin-top: 60px; width: 218px; height: 305px; background-color: #209dd5; border-radius: 10px; }
.banner .right h3 { margin-left: 14px; height: 48px; line-height: 48px; font-size: 15px; color: #fff; font-weight: 400; }
.banner .right .content { padding: 14px; height: 257px; background-color: #fff; border-radius: 10px; }
|
13-banner区域-课程表内容
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12
| <dl> <dt>数据可视化课程</dt> <dd><span>正在学习</span>-<strong>echarts使用步骤</strong></dd> </dl> <dl> <dt>Vue3医疗项目课程 </dt> <dd><span>正在学习</span>-<strong>认识组合式API</strong></dd> </dl> <dl> <dt>React核心技术课程</dt> <dd><span>正在学习</span>-<strong>rudex配合TS使用</strong></dd> </dl>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| .banner .right dl { margin-bottom: 12px; border-bottom: 1px solid #e0e0e0; }
.banner .right dt { margin-bottom: 8px; font-size: 14px; line-height: 20px; font-weight: 700; }
.banner .right dd { margin-bottom: 8px; font-size: 12px; line-height: 16px; }
.banner .right dd span { color: #00a4ff; }
.banner .right dd strong { color: #7d7d7d; font-weight: 400; }
|
14-banner区域-全部课程
HTML结构
CSS样式
1 2 3 4 5 6 7 8 9 10
| .banner .right a { display: block; height: 32px; background-color: #00a4ff; text-align: center; line-height: 32px; font-size: 14px; color: #fff; border-radius: 15px; }
|
15-精品推荐-区域布局
HTML结构
1 2 3 4 5 6 7 8
| <div class="recommend wrapper"> <h3>精品推荐</h3> <ul> <li><a href="#">HTML</a></li> </ul> <a href="#" class="modify">修改兴趣</a> </div
|
CSS样式
1 2 3 4 5 6 7 8 9 10
| .recommend { display: flex; margin-top: 11px; padding: 0 20px; height: 60px; background-color: #fff; box-shadow: 0px 1px 2px 0px rgba(211, 211, 211, 0.5); line-height: 60px; }
|
16-精品推荐-内容样式
HTML结构
1 2 3 4 5 6 7 8 9 10 11
| <ul> <li><a href="#">HTML</a></li> <li><a href="#">CSS</a></li> <li><a href="#">JavaScript</a></li> <li><a href="#">Node.js</a></li> <li><a href="#">Ajax</a></li> <li><a href="#">Vue2.0</a></li> <li><a href="#">Vue3.0</a></li> <li><a href="#">TypeScript</a></li> <li><a href="#">React</a></li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| .recommend h3 { font-size: 18px; color: #00a4ff; font-weight: 400; }
.recommend ul { flex: 1; display: flex; }
.recommend ul li a { padding: 0 24px; border-right: 1px solid #e0e0e0; font-size: 18px; }
.recommend ul li:last-child a { border-right: 0; }
.recommend .modify { font-size: 16px; color: #00a4ff; }
|
17-推荐课程-标题区域
HTML结构
1 2 3 4 5 6 7 8 9 10
| <div class="course wrapper"> <div class="hd"> <h3>精品推荐</h3> <a href="#" class="more">查看全部</a> </div> <div class="bd">1</div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| .course { margin-top: 15px; }
.hd { display: flex; justify-content: space-between; height: 60px; line-height: 60px; }
.hd h3 { font-size: 21px; font-weight: 400; }
.hd .more { padding-right: 20px; background: url(../images/more.png) no-repeat right center; font-size: 14px; color: #999; }
|
18-推荐课程-内容布局
HTML结构
1 2 3 4 5 6 7 8 9 10
| <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> <li>7</li> <li>8</li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13
| .bd ul { display: flex; flex-wrap: wrap; justify-content: space-between; }
.bd li { margin-bottom: 14px; width: 228px; height: 271px; background-color: pink; }
|
19-推荐课程-内容样式
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
| <ul> <li> <a href="#"> <div class="pic"><img src="./uploads/course01.png" alt=""></div> <div class="text"> <h4>JavaScript数据看板项目实战</h4> <p><span>高级</span> · <i>1125</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course02.png" alt=""></div> <div class="text"> <h4>Vue.js实战——面经全端项目</h4> <p><span>高级</span> · <i>2726</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course03.png" alt=""></div> <div class="text"> <h4>玩转Vue全家桶,iHRM人力资源项目</h4> <p><span>高级</span> · <i>9456</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course04.png" alt=""></div> <div class="text"> <h4>Vue.js实战医疗项目——优医问诊</h4> <p><span>高级</span> · <i>7192</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course05.png" alt=""></div> <div class="text"> <h4>小程序实战:小兔鲜电商小程序项目</h4> <p><span>高级</span> · <i>2703</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course06.png" alt=""></div> <div class="text"> <h4>前端框架Flutter开发实战</h4> <p><span>高级</span> · <i>2841</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course07.png" alt=""></div> <div class="text"> <h4>熟练使用React.js——极客园H5项目</h4> <p><span>高级</span> · <i>95682</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course08.png" alt=""></div> <div class="text"> <h4>熟练使用React.js——极客园PC端项目</h4> <p><span>高级</span> · <i>904</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course09.png" alt=""></div> <div class="text"> <h4>前端实用技术,Fetch API 实战</h4> <p><span>高级</span> · <i>1516</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/course10.png" alt=""></div> <div class="text"> <h4>前端高级Node.js零基础入门教程</h4> <p><span>高级</span> · <i>2766</i>人在学习</p> </div> </a> </li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| .bd li .pic { height: 156px; }
.bd li .text { padding: 20px; height: 115px; background-color: #fff; }
.bd li .text h4 { margin-bottom: 13px; height: 40px; font-size: 14px; line-height: 20px; font-weight: 400; }
.bd li .text p { font-size: 14px; line-height: 20px; color: #999; }
.bd li .text p span { color: #fa6400; }
.bd li .text p i { font-style: normal; }
|
20-前端开发工程师区域
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| <div class="wrapper"> <div class="hd"> <h3>前端开发工程师</h3> <ul> <li><a href="#" class="active">热门</a></li> <li><a href="#">初级</a></li> <li><a href="#">中级</a></li> <li><a href="#">高级</a></li> </ul> <a href="#" class="more">查看全部</a> </div> <div class="bd"> <div class="left"> <img src="./uploads/web_left.png" alt=""> </div> <div class="right"> <div class="top"><img src="./uploads/web_top.png" alt=""></div> <div class="bottom"> <ul> <li> <a href="#"> <div class="pic"><img src="./uploads/web01.png" alt=""></div> <div class="text"> <h4>JS高级javaScript进阶面向对象ES6</h4> <p><span>高级</span> · <i>101937</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/web02.png" alt=""></div> <div class="text"> <h4>零基础玩转微信小程序</h4> <p><span>高级</span> · <i>133781</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/web03.png" alt=""></div> <div class="text"> <h4>JavaScript基础——语法解析+项目实战</h4> <p><span>高级</span> · <i>8927</i>人在学习</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/web04.png" alt=""></div> <div class="text"> <h4>前端框架Vue2+Vue3全套视频</h4> <p><span>高级</span> · <i>26022</i>人在学习</p> </div> </a> </li> </ul> </div> </div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| .hd ul { display: flex; }
.hd li { margin-right: 60px; font-size: 16px; }
.hd li .active { color: #00a4ff; }
.bd { display: flex; justify-content: space-between; }
.bd .left { width: 228px; }
.bd .right { width: 957px; }
.bd .right .top { margin-bottom: 15px; height: 100px; }
|
21-版权-布局
HTML结构
1 2 3 4 5 6 7
| <div class="footer"> <div class="wrapper"> <div class="left">left</div> <div class="right">right</div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| .footer { margin-top: 60px; padding-top: 60px; height: 273px; background-color: #fff; }
.footer .wrapper { display: flex; justify-content: space-between; }
.footer .left { width: 440px; background-color: pink; }
|
22-版权-内容
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| <div class="left"> <a href="#"><img src="./images/logo.png" alt=""></a> <p>学成在线致力于普及中国最好的教育它与中国一流大学和机构合作提供在线课程。 © 2017年XTCG Inc.保留所有权利。-沪ICP备15025210号</p> <a href="#" class="download">下载APP</a> </div> <div class="right"> <dl> <dt>关于学成网</dt> <dd><a href="#">关于</a></dd> <dd><a href="#">管理团队</a></dd> <dd><a href="#">工作机会</a></dd> <dd><a href="#">客户服务</a></dd> <dd><a href="#">帮助</a></dd> </dl> <dl> <dt>新手指南</dt> <dd><a href="#">如何注册</a></dd> <dd><a href="#">如何选课</a></dd> <dd><a href="#">如何拿到毕业证</a></dd> <dd><a href="#">学分是什么</a></dd> <dd><a href="#">考试未通过怎么办</a></dd> </dl> <dl> <dt>合作伙伴</dt> <dd><a href="#">合作机构</a></dd> <dd><a href="#">合作导师</a></dd> </dl> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| .footer .left p { margin-top: 24px; margin-bottom: 14px; font-size: 12px; line-height: 17px; color: #666; }
.footer .left .download { display: block; width: 120px; height: 36px; border: 1px solid #00a4ff; text-align: center; line-height: 34px; font-size: 16px; color: #00a4ff; }
.footer .right { display: flex; }
.footer .right dl { margin-left: 130px; }
.footer .right dt { margin-bottom: 12px; font-size: 16px; line-height: 23px; }
.footer .right a { font-size: 14px; color: #666; line-height: 24px; }
|
day08-CSS高级
目标:掌握定位的作用及特点;掌握 CSS 高级技巧
01-定位
作用:灵活的改变盒子在网页中的位置
实现:
1.定位模式:position
2.边偏移:设置盒子的位置
相对定位
position: relative
特点:
- 不脱标,占用自己原来位置
- 显示模式特点保持不变
- 设置边偏移则相对自己原来位置移动
1 2 3 4 5
| div { position: relative; top: 100px; left: 200px; }
|
绝对定位
position: absolute
使用场景:子级绝对定位,父级相对定位(子绝父相)
特点:
- 脱标,不占位
- 显示模式具备行内块特点
- 设置边偏移则相对最近的已经定位的祖先元素改变位置
- 如果祖先元素都未定位,则相对浏览器可视区改变位置
1 2 3 4 5 6 7 8 9
| .father { position: relative; }
.father span { position: absolute; top: 0; right: 0; }
|
定位居中
实现步骤:
- 绝对定位
- 水平、垂直边偏移为 50%
- 子级向左、上移动自身尺寸的一半
- 左、上的外边距为 –尺寸的一半
- transform: translate(-50%, -50%)
1 2 3 4 5 6 7 8 9 10 11
| img { position: absolute; left: 50%; top: 50%;
transform: translate(-50%, -50%); }
|
固定定位
position: fixed
场景:元素的位置在网页滚动时不会改变
特点:
- 脱标,不占位
- 显示模式具备行内块特点
- 设置边偏移相对浏览器窗口改变位置
1 2 3 4 5 6 7
| div { position: fixed; top: 0; right: 0;
width: 500px; }
|
堆叠层级z-index
默认效果:按照标签书写顺序,后来者居上
作用:设置定位元素的层级顺序,改变定位元素的显示顺序
属性名:z-index
属性值:整数数字(默认值为0,取值越大,层级越高)
1 2 3 4 5 6 7 8 9 10 11 12 13
| .box1 { background-color: pink; z-index: 1; }
.box2 { background-color: skyblue; left: 100px; top: 100px;
z-index: 2; }
|
02-高级技巧
CSS精灵
CSS 精灵,也叫 CSS Sprites,是一种网页图片应用处理方式。把网页中一些背景图片整合到一张图片文件中,再background-position 精确的定位出背景图片的位置。
优点:减少服务器被请求次数,减轻服务器的压力,提高页面加载速度
实现步骤:
- 创建盒子,盒子尺寸与小图尺寸相同
- 设置盒子背景图为精灵图
- 添加 background-position 属性,改变背景图位置
3.1 使用 PxCook 测量小图片左上角坐标
3.2 取负数坐标为 background-position 属性值(向左上移动图片位置)
案例-京东服务
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <div class="service"> <ul> <li> <h5></h5> <p>品类齐全,轻松购物</p> </li> <li> <h5></h5> <p>多仓直发,极速配送</p> </li> <li> <h5></h5> <p>正品行货,精致服务</p> </li> <li> <h5></h5> <p>天天低价,畅选无忧</p> </li> </ul> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| <style> * { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
.service { margin: 100px auto; width: 1190px; height: 42px; }
.service ul { display: flex; }
.service li { display: flex; padding-left: 40px; width: 297px; height: 42px; }
.service li h5 { margin-right: 10px; width: 36px; height: 42px; background: url(./images/sprite.png) 0 -192px; }
.service li:nth-child(2) h5 { background-position: -41px -192px; }
.service li:nth-child(3) h5 { background-position: -82px -192px; }
.service li:nth-child(4) h5 { background-position: -123px -192px; }
.service li p { font-size: 18px; color: #444; font-weight: 700; line-height: 42px; } </style>
|
字体图标
字体图标:展示的是图标,本质是字体
作用:在网页中添加简单的、颜色单一的小图标
优点
- 灵活性:灵活地修改样式,例如:尺寸、颜色等
- 轻量级:体积小、渲染快、降低服务器请求次数
- 兼容性:几乎兼容所有主流浏览器
- 使用方便:先下载再使用
下载字体
iconfont 图标库:https://www.iconfont.cn/
登录 → 素材库 → 官方图标库 → 进入图标库 → 选图标,加入购物车 → 购物车,添加至项目,确定 → 下载至本地
使用字体
- 引入字体样式表(iconfont.css)
- 标签使用字体图标类名
- iconfont:字体图标基本样式(字体名,字体大小等等)
- icon-xxx:图标对应的类名
上传矢量图
作用:项目特有的图标上传到 iconfont 图标库,生成字体
上传步骤:上传 → 上传图标 → 选择 svg 矢量图,打开 → 提交 → 系统审核
03-CSS修饰属性
垂直对齐方式
属性名:vertical-align
过渡
作用:可以为一个元素在不同状态之间切换的时候添加过渡效果
属性名:transition(复合属性)
属性值:过渡的属性 花费时间 (s)
提示:
- 过渡的属性可以是具体的 CSS 属性
- 也可以为 all(两个状态属性值不同的所有属性,都产生过渡效果)
- transition 设置给元素本身
1 2 3 4 5 6 7 8 9 10
| img { width: 200px; height: 200px; transition: all 1s; }
img:hover { width: 500px; height: 500px; }
|
透明度opacity
作用:设置整个元素的透明度(包含背景和内容)
属性名:opacity
属性值:0 – 1
- 0:完全透明(元素不可见)
- 1:不透明
- 0-1之间小数:半透明
光标类型cursor
作用:鼠标悬停在元素上时指针显示样式
属性名:cursor
04-综合案例-轮播图
图片效果
HTML结构
1 2 3 4 5 6 7 8
| <div class="banner"> <ul> <li><a href="#"><img src="./images/banner1.jpg" alt=""></a></li> <li><a href="#"><img src="./images/banner2.jpg" alt=""></a></li> <li><a href="#"><img src="./images/banner3.jpg" alt=""></a></li> </ul> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| * { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
.banner { position: relative; margin: 100px auto; width: 564px; height: 315px; overflow: hidden; }
.banner img { width: 564px; border-radius: 12px; vertical-align: middle; }
.banner ul { display: flex; }
|
箭头
HTML结构
1 2 3 4 5 6 7 8 9
|
<a href="#" class="prev"> <i class="iconfont icon-zuoce"></i> </a>
<a href="#" class="next"> <i class="iconfont icon-youce"></i> </a>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| .banner .prev, .banner .next { display: none; position: absolute; top: 50%; transform: translateY(-50%);
width: 20px; height: 30px; background-color: rgba(0,0,0, 0.3);
text-decoration: none; color: #fff; line-height: 30px; }
.banner:hover .prev, .banner:hover .next { display: block; }
.banner .prev { left: 0; border-radius: 0 15px 15px 0; }
.banner .next { right: 0; border-radius: 15px 0 0 15px; text-align: center; }
|
圆点
HTML结构
1 2 3 4 5 6
| <ol> <li></li> <li class="active"></li> <li></li> </ol>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| .banner ol { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); height: 13px; background-color: rgba(255,255,255,0.3);
display: flex;
border-radius: 10px; }
.banner ol li { margin: 3px; width: 8px; height: 8px; background-color: #fff; border-radius: 50%; cursor: pointer; }
.banner ol .active { background-color: #ff5000; }
|
day09-小兔鲜儿
01-搭建项目目录
- xtx-pc
- images 文件夹:存放固定使用的图片素材,例如:logo、样式修饰图等等
- uploads 文件夹:存放非固定使用的图片素材,例如:商品图、宣传图需要上传的图片
- iconfont 文件夹:字体图标素材
- css 文件夹:存放 CSS 文件(link 标签引入)
- base.css:基础公共样式
- common.css:各个网页相同模块的重复样式,例如:头部、底部
- index.css:首页 CSS 样式
- index.html:首页 HTML 文件
引入样式表
1 2 3 4
| <link rel="stylesheet" href="./iconfont/iconfont.css"> <link rel="stylesheet" href="./css/base.css"> <link rel="stylesheet" href="./css/common.css"> <link rel="stylesheet" href="./css/index.css">
|
02-网页头部SEO三大标签
SEO:搜索引擎优化,提升网站百度搜索排名
提升SEO的常见方法:
- 竞价排名
- 将网页制作成html后缀
- 标签语义化(在合适的地方使用合适的标签)
- ……
网页头部 SEO 标签:
- title:网页标题标签
- description:网页描述
- keywords:网页关键词
1 2 3 4 5
| <meta name="description" content="小兔鲜儿官网,致力于打造全球最大的食品、生鲜电商购物平台。">
<meta name="keywords" content="小兔鲜儿,食品,生鲜,服装,家电,电商,购物"> <title>小兔鲜儿-新鲜、惠民、快捷!</title>
|
03-Favicon图标
Favicon 图标:网页图标,出现在浏览器标题栏,增加网站辨识度。
图标:favicon.ico,一般存放到网站的根目录里面
1 2
| <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
04-版心
common.css
1 2 3 4 5
| .wrapper { margin: 0 auto; width: 1240px; }
|
05-快捷导航-布局
HTML结构
1 2 3 4
| <div class="shortcut"> <div class="wrapper">1</div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12
| .shortcut { height: 52px; background-color: #333; }
.shortcut .wrapper { display: flex; justify-content: flex-end; height: 52px; background-color: pink; }
|
06-快捷导航-内容
HTML结构
1 2 3 4 5 6 7 8 9
| <ul> <li><a href="#" class="login">请先登录</a></li> <li><a href="#">免费注册</a></li> <li><a href="#">我的订单</a></li> <li><a href="#">会员中心</a></li> <li><a href="#">帮助中心</a></li> <li><a href="#">在线客服</a></li> <li><a href="#"><span class="iconfont icon-mobile-phone"></span>手机版</a></li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| .shortcut ul { display: flex; line-height: 52px; }
.shortcut li a { padding: 0 15px; border-right: 1px solid #999; font-size: 14px; color: #fff; }
.shortcut li:last-child a { border-right: 0; }
.shortcut li .iconfont { margin-right: 4px; vertical-align: middle; }
.shortcut li .login { color: #5EB69C; }
|
07-头部-布局
HTML结构
1 2 3 4 5 6 7 8 9 10 11
| <div class="header wrapper"> <div class="logo">logo</div> <div class="nav">导航</div> <div class="search">搜索</div> <div class="cart">购物车</div> </div>
|
CSS样式
1 2 3 4 5 6 7 8
| .header { display: flex; margin-top: 22px; margin-bottom: 22px; height: 88px; background-color: pink; }
|
08-头部-logo
HTML结构
1 2 3 4
| <div class="logo"> <h1><a href="#">小兔鲜儿</a></h1> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| .logo { margin-right: 40px; width: 200px; height: 88px; }
.logo a { display: block; width: 200px; height: 88px; background-image: url(../images/logo.png); font-size: 0; }
|
09-头部-导航
HTML结构
1 2 3 4 5 6 7 8 9 10 11
| <ul> <li><a href="#">首页</a></li> <li><a href="#">生鲜</a></li> <li><a href="#">美食</a></li> <li><a href="#">餐厨</a></li> <li><a href="#">电器</a></li> <li><a href="#">居家</a></li> <li><a href="#">洗护</a></li> <li><a href="#">孕婴</a></li> <li><a href="#">服装</a></li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| .nav { margin-top: 33px; margin-right: 28px; }
.nav ul { display: flex; }
.nav li { margin-right: 47px; }
.nav li a { padding-bottom: 10px; }
.nav li a:hover { border-bottom: 2px solid #5EB69C; color: #5EB69C; }
|
10-头部-搜索
HTML结构
1 2 3 4 5
| <div class="search"> <span class="iconfont icon-search"></span> <input type="text" placeholder="搜一搜"> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| .search { display: flex; margin-top: 33px; margin-right: 45px; width: 170px; height: 34px; border-bottom: 2px solid #F4F4F4; }
.search .iconfont { margin-right: 8px; font-size: 18px; color: #ccc; }
.search input { flex: 1; width: 0; }
.search input::placeholder { font-size: 16px; color: #ccc; }
|
11-头部-购物车
HTML结构
1 2 3 4 5
| <div class="cart"> <span class="iconfont icon-cart-full"></span> <i>2</i> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| .cart { position: relative; margin-top: 32px; }
.cart .iconfont { font-size: 24px; }
.cart i { position: absolute; top: 1px; left: 15px; padding: 0 6px; height: 15px; background-color: #E26237; border-radius: 8px; font-size: 14px; color: #FFFEFE; line-height: 15px; }
|
12-底部-布局
HTML结构
1 2 3 4 5 6 7 8 9 10 11
| <div class="footer"> <div class="wrapper"> <div class="service">服务</div> <div class="help">帮助中心</div> <div class="copyright">版权</div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| .footer { height: 580px; background-color: #F5F5F5; }
.service { padding: 60px 0; height: 178px; border-bottom: 1px solid #E8E8E8; }
.help { display: flex; justify-content: space-between; padding-top: 60px; height: 300px; background-color: pink; }
|
13-底部-服务区域
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <ul> <li> <h5></h5> <p>价格亲民</p> </li> <li> <h5></h5> <p>物流快捷</p> </li> <li> <h5></h5> <p>品质新鲜</p> </li> <li> <h5></h5> <p>售后无忧</p> </li> </ul>
|
CSS结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| .service ul { display: flex; justify-content: space-evenly; }
.service li { display: flex; width: 190px; height: 58px; }
.service li h5 { margin-right: 20px; width: 58px; height: 58px; background-image: url(../images/sprite.png); }
.service li p { font-size: 28px; line-height: 58px; }
.service li:nth-child(2) h5 { background-position: 0 -58px; } .service li:nth-child(3) h5 { background-position: 0 -116px; } .service li:nth-child(4) h5 { background-position: 0 -174px; }
|
14-底部-帮助中心-左侧
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <div class="left"> <dl> <dt>购物指南</dt> <dd><a href="#">购物流程</a></dd> <dd><a href="#">支付方式</a></dd> <dd><a href="#">售后规则</a></dd> </dl> <dl> <dt>配送方式</dt> <dd><a href="#">配送运费</a></dd> <dd><a href="#">配送范围</a></dd> <dd><a href="#">配送时间</a></dd> </dl> <dl> <dt>关于我们</dt> <dd><a href="#">平台规则</a></dd> <dd><a href="#">联系我们</a></dd> <dd><a href="#">问题反馈</a></dd> </dl> <dl> <dt>售后服务</dt> <dd><a href="#">售后政策</a></dd> <dd><a href="#">退款说明</a></dd> <dd><a href="#">取消订单</a></dd> </dl> <dl> <dt>服务热线</dt> <dd><a href="#">在线客服<span class="iconfont icon-customer-service"></span></a></dd> <dd><a href="#">客服电话 400-0000-000</a></dd> <dd><a href="#">工作时间 周一至周日 8:00-18:00</a></dd> </dl> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| .help .left { display: flex; }
.help .left dl { margin-right: 84px; }
.help .left dl:last-child { margin-right: 0; }
.help .left dt { margin-bottom: 30px; font-size: 18px; }
.help .left dd { margin-bottom: 10px; }
.help .left a { color: #969696; }
.help .left .iconfont { color: #5EB69C; }
|
15-底部-帮助中心-右侧
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12
| <div class="right"> <ul> <li> <div class="pic"><img src="./images/wechat.png" alt=""></div> <p>微信公众号</p> </li> <li> <div class="pic"><img src="./images/app.png" alt=""></div> <p>APP下载二维码</p> </li> </ul> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| .help .right ul { display: flex; }
.help .right li:first-child { margin-right: 55px; }
.help .right .pic { margin-bottom: 10px; width: 120px; height: 120px; }
.help .right p { color: #969696; text-align: center; }
|
16-底部-版权
HTML结构
1 2 3 4 5 6 7 8 9 10
| <p> <a href="#">关于我们</a>| <a href="#">帮助中心</a>| <a href="#">售后服务</a>| <a href="#">配送与验收</a>| <a href="#">商务合作</a>| <a href="#">搜索推荐</a>| <a href="#">友情链接</a> </p> <p>CopyRight © 小兔鲜</p>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| .copyright { text-align: center; }
.copyright p { margin-bottom: 10px; color: #A1A1A1; }
.copyright p a { margin: 0 10px; color: #A1A1A1; }
|
day10-小兔鲜儿
01-banner-轮播图
index.css
HTML结构
1 2 3 4 5 6 7 8 9 10 11
| <div class="banner"> <div class="wrapper"> <ul class="pic"> <li><a href="#"><img src="./uploads/banner1.png" alt=""></a></li> <li><a href="#"><img src="./uploads/banner1.png" alt=""></a></li> <li><a href="#"><img src="./uploads/banner1.png" alt=""></a></li> </ul> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| .banner { height: 500px; background-color: #F5F5F5; }
.banner .wrapper { position: relative; height: 500px; background-color: pink; overflow: hidden; }
.banner .pic { display: flex; width: 3720px; }
|
02-banner-侧导航
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| <div class="subnav"> <ul> <li> <div><a href="#" class="classify">生鲜</a><a href="#">水果</a><a href="#">蔬菜</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">美食</a><a href="#">面点</a><a href="#">干果</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">餐厨</a><a href="#">数码产品</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">电器</a><a href="#">床品</a><a href="#">四件套</a><a href="#">被枕</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">居家</a><a href="#">奶粉</a><a href="#">玩具</a><a href="#">辅食</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">洗护</a><a href="#">洗发</a><a href="#">洗护</a><a href="#">美妆</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">孕婴</a><a href="#">奶粉</a><a href="#">玩具</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">服饰</a><a href="#">女装</a><a href="#">男装</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">杂货</a><a href="#">户外</a><a href="#">图书</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> <li> <div><a href="#" class="classify">品牌</a><a href="#">品牌制造</a></div> <span class="iconfont icon-arrow-right-bold"></span> </li> </ul> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| .subnav { position: absolute; left: 0; top: 0; width: 250px; height: 500px; background-color: rgba(0,0,0,0.42); }
.subnav li { display: flex; justify-content: space-between; padding-left: 30px; padding-right: 12px; height: 50px; line-height: 50px; color: #fff;
cursor: pointer; }
.subnav li a { margin-right: 5px; font-size: 14px; color: #fff; }
.subnav li .classify { margin-right: 14px; font-size: 16px; }
.subnav li .iconfont { font-size: 14px; }
.subnav li:hover { background-color: #00BE9A; }
|
03-banner-圆点指示器
HTML结构
1 2 3 4 5 6
| <ol> <li class="current"><i></i></li> <li><i></i></li> <li><i></i></li> </ol>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| .banner ol { position: absolute; bottom: 17px; right: 16px; display: flex; }
.banner ol li { margin-left: 8px; width: 22px; height: 22px; border-radius: 50%; cursor: pointer; }
.banner ol i { display: block; margin: 4px; width: 14px; height: 14px; background-color: rgba(255,255,255,0.5); border-radius: 50%; }
.banner ol .current { background-color: rgba(255,255,255,0.5); }
.banner ol .current i { background-color: #fff; }
|
04-新鲜好物-标题
考虑公共样式
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13
| <div class="goods wrapper"> <div class="title"> <div class="left"> <h3>新鲜好物</h3> <p>新鲜出炉 品质靠谱</p> </div> <div class="right"> <a href="#" class="more">查看全部<span class="iconfont icon-arrow-right-bold"></span></a> </div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
.title { display: flex; justify-content: space-between; margin-top: 40px; margin-bottom: 30px; height: 42px; }
.title .left { display: flex; }
.title .left h3 { margin-right: 35px; font-size: 30px; }
.title .left p { align-self: flex-end; color: #A1A1A1; }
.title .right .more { line-height: 42px; color: #A1A1A1; }
.title .right .more .iconfont { margin-left: 10px; }
|
05-新鲜好物-内容
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| <div class="bd"> <ul> <li> <a href="#"> <div class="pic"><img src="./uploads/goods1.png" alt=""></div> <div class="txt"> <h4>KN95级莫兰迪色防护口罩</h4> <p>¥<span>79</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/goods2.png" alt=""></div> <div class="txt"> <h4>紫檀外独板三层普洱茶盒</h4> <p>¥<span>566</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/goods3.png" alt=""></div> <div class="txt"> <h4>法拉蒙高颜值记事本可定制</h4> <p>¥<span>58</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/goods4.png" alt=""></div> <div class="txt"> <h4>科技布布艺沙发</h4> <p>¥<span>3579</span></p> </div> </a> </li> </ul> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| .bd ul { display: flex; justify-content: space-between; }
.bd li { width: 304px; height: 404px; background-color: #EEF9F4; }
.bd li .pic { width: 304px; height: 304px; }
.bd li .txt { text-align: center; }
.bd li h4 { margin-top: 18px; margin-bottom: 8px; font-size: 20px; }
.goods .bd p { font-size: 18px; color: #AA2113; }
.goods .bd p span { margin-left: 3px; font-size: 22px; }
|
06-人气推荐
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| <div class="recommend wrapper"> <div class="title"> <div class="left"> <h3>人气推荐</h3> <p>人气爆款 不容错过</p> </div> </div> <div class="bd"> <ul> <li> <a href="#"> <div class="pic"><img src="./uploads/recommend1.png" alt=""></div> <div class="txt"> <h4>特惠推荐</h4> <p>我猜得到 你的需要</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/recommend2.png" alt=""></div> <div class="txt"> <h4>爆款推荐</h4> <p>人气好物推荐</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/recommend3.png" alt=""></div> <div class="txt"> <h4>节日礼品一站买全</h4> <p>编辑尽心整理推荐</p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/recommend4.png" alt=""></div> <div class="txt"> <h4>鲜花园艺</h4> <p>给生活增加仪式感</p> </div> </a> </li> </ul> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8
| .recommend .bd li { background-color: #fff; }
.recommend .bd p { color: #A1A1A1; }
|
07-热门品牌-布局
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <div class="brand"> <div class="wrapper"> <div class="title"> <div class="left"> <h3>热门品牌</h3> <p>国际经典 品质认证</p> </div>
<div class="button">1</div> </div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| .brand { margin-top: 60px; height: 468px; background-color: #F5F5F5; }
.brand .wrapper { overflow: hidden; height: 468px; }
.brand .title { position: relative; margin-bottom: 40px; }
.brand .button { position: absolute; right: 0; bottom: -25px;
display: flex; }
|
08-热门品牌-内容
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <div class="button"> <a href="#" class="prev"> <i class="iconfont icon-arrow-left-bold"></i> </a> <a href="#" class="next"> <i class="iconfont icon-arrow-right-bold"></i> </a> </div>
<div class="bd"> <ul> <li><a href="#"><img src="./uploads/hot1.png" alt=""></a></li> <li><a href="#"><img src="./uploads/hot2.png" alt=""></a></li> <li><a href="#"><img src="./uploads/hot3.png" alt=""></a></li> <li><a href="#"><img src="./uploads/hot4.png" alt=""></a></li> <li><a href="#"><img src="./uploads/hot5.png" alt=""></a></li> </ul> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| .brand .button a { margin-left: 12px; width: 20px; height: 20px; text-align: center; line-height: 20px; color: #fff; }
.brand .button .prev { background-color: #ddd; }
.brand .button .next { background-color: #00BE9A; }
.brand .bd li { width: 244px; height: 306px; }
|
09-生鲜-标题
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <div class="fresh wrapper"> <div class="title"> <div class="left"> <h3>生鲜</h3> </div> <div class="right"> <ul> <li><a href="#" class="active">热门</a></li> <li><a href="#">蔬菜</a></li> <li><a href="#">肉禽蛋</a></li> <li><a href="#">水果</a></li> <li><a href="#">海鲜</a></li> <li><a href="#">零食</a></li> <li><a href="#">饮料</a></li> </ul> <a href="#" class="more">查看全部<span class="iconfont icon-arrow-right-bold"></span></a> </div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| .fresh .title { margin-top: 60px; margin-bottom: 20px; }
.title .right { display: flex; }
.title .right ul { display: flex; margin-top: 10px; margin-right: 58px; }
.title .right ul a { display: block; margin-left: 6px; padding: 0 7px; height: 20px; line-height: 20px; }
.title .right ul .active { background-color: #00BE9A; color: #fff; }
|
10-生鲜-内容布局
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <div class="content"> <div class="left"> <a href="#"><img src="./uploads/fresh_left.png" alt=""></a> </div> <div class="right"> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> <li>7</li> <li>8</li> </ul> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| .content { display: flex; justify-content: space-between; }
.content .left { width: 248px; height: 610px; }
.content .right { width: 968px; height: 610px; }
.content .right ul { display: flex; flex-wrap: wrap; }
.content .right li { position: relative; padding: 10px 21px 0; width: 242px; height: 305px; border: 2px solid #fff;
overflow: hidden; }
|
11-生鲜-产品内容
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
| <ul> <li> <a href="#"> <div class="pic"><img src="./uploads/fresh1.png" alt=""></div> <div class="txt"> <div class="info"> <h4>双味千层,手抓饼烤肉组合</h4> <p>240g/袋 4片装</p> <p>加热即食</p> </div> <p class="price">¥<span>89.99</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/fresh2.png" alt=""></div> <div class="txt"> <div class="info"> <h4>云南甘蔗慢熬红糖馒头</h4> <p>220g/袋 5个装</p> <p>加热即食</p> </div> <p class="price">¥<span>9.00</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/fresh3.png" alt=""></div> <div class="txt"> <div class="info"> <h4>日式风味小圆饼</h4> <p>圆形【海盐味】</p> <p>糖果零食</p> </div> <p class="price">¥<span>588.00</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/fresh4.png" alt=""></div> <div class="txt"> <div class="info"> <h4>全麦奶油浓香小面包</h4> <p>50g*12袋</p> <p>美味西点</p> </div> <p class="price">¥<span>69.00</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/fresh5.png" alt=""></div> <div class="txt"> <div class="info"> <h4>秘制外皮五福摩提大福点心</h4> <p>150g/盒</p> <p>美味西点</p> </div> <p class="price">¥<span>39.99</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/fresh6.png" alt=""></div> <div class="txt"> <div class="info"> <h4>水果面膜韩国蜂蜜柚子茶</h4> <p>560g/瓶</p> <p>冲调饮品</p> </div> <p class="price">¥<span>39.99</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/fresh7.png" alt=""></div> <div class="txt"> <div class="info"> <h4>浓情比利时巧克力礼盒装</h4> <p>205克/盒</p> <p>糖果零食</p> </div> <p class="price">¥<span>120.00</span></p> </div> </a> </li> <li> <a href="#"> <div class="pic"><img src="./uploads/fresh8.png" alt=""></div> <div class="txt"> <div class="info"> <h4>抹茶奶油小蛋糕礼盒装</h4> <p>220克/盒</p> <p>美味西点</p> </div> <p class="price">¥<span>60.00</span></p> </div> </a> </li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| .content .pic { width: 200px; height: 180px; }
.content .info { margin-top: 14px; margin-bottom: 5px; height: 60px; line-height: 19px; }
.content .price { color: #AF2F22; }
.content .price span { margin-left: 5px; font-size: 22px; }
|
12-生鲜-过渡效果
HTML结构
1 2 3 4 5
| <div class="cover"> <p>找相似</p> <p></p> <p>发现更多宝贝<span class="iconfont icon-arrow-right-bold"></span></p> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| .content li .cover { position: absolute; left: 0; bottom: -86px; padding-top: 15px; width: 242px; height: 84px; background-color: #00BE9A; text-align: center; color: #fff; transition: all 0.5s; }
.content .cover p:nth-child(1) { font-size: 18px; }
.content .cover p:nth-child(2) { margin: 3px auto 6px; width: 120px; height: 1px; background-color: rgba(255,255,255,0.11); }
.content .cover p:nth-child(3) { font-size: 13px; }
.content .cover p:nth-child(3) .iconfont { font-size: 14px; }
.content .right li:hover .cover { bottom: 0; }
.content .right li:hover { border: 2px solid #00BE9A; }
|
13-最新专题-布局
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <div class="topic wrapper"> <div class="title"> <div class="left"> <h3>最新专题</h3> </div> <div class="right"> <a href="#" class="more">查看全部<span class="iconfont icon-arrow-right-bold"></span></a> </div> </div> <div class="topic-bd"> <ul> <li>1</li> <li>2</li> <li>3</li> </ul> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| .topic { margin-bottom: 40px; }
.topic .title { margin-top: 100px; }
.topic-bd ul { display: flex; justify-content: space-between; }
.topic-bd li { width: 405px; height: 355px; background-color: pink; }
|
14-最新专题-内容
HTML结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
| <ul> <li> <a href="#"> <div class="pic"> <img src="./uploads/topic1.png" alt=""> </div> <div class="txt"> <div class="left"> <p> <i class="iconfont icon-favorites-fill"></i> <span>1220</span> </p> <p> <i class="iconfont icon-browse"></i> <span>1800</span> </p> </div> <div class="right"> <p> <i class="iconfont icon-comment"></i> <span>246</span> </p> </div> </div> </a> </li> <li> <a href="#"> <div class="pic"> <img src="./uploads/topic2.png" alt=""> </div> <div class="txt"> <div class="left"> <p> <i class="iconfont icon-favorites-fill"></i> <span>1220</span> </p> <p> <i class="iconfont icon-browse"></i> <span>1800</span> </p> </div> <div class="right"> <p> <i class="iconfont icon-comment"></i> <span>246</span> </p> </div> </div> </a> </li> <li> <a href="#"> <div class="pic"> <img src="./uploads/topic3.png" alt=""> </div> <div class="txt"> <div class="left"> <p> <i class="iconfont icon-favorites-fill"></i> <span>1220</span> </p> <p> <i class="iconfont icon-browse"></i> <span>1800</span> </p> </div> <div class="right"> <p> <i class="iconfont icon-comment"></i> <span>246</span> </p> </div> </div> </a> </li> </ul>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| .topic-bd ul { display: flex; justify-content: space-between; }
.topic-bd li { width: 405px; height: 355px; background-color: pink; }
.topic-bd .pic { position: relative; width: 405px; height: 288px; }
.topic-bd .txt { display: flex; justify-content: space-between; align-items: center; padding: 0 15px; width: 405px; height: 67px; font-size: 14px; color: #666; }
.topic-bd .txt .left { display: flex; }
.topic-bd .txt .left p { margin-right: 20px; }
.topic-bd .txt .left p:nth-child(1) i { color: #AA2113; }
|
15-最新专题-定位文字
HTML结构
1 2 3 4 5 6 7 8 9 10 11
| <div class="pic"> <img src="./uploads/topic2.png" alt=""> <div class="cover"> <div class="left"> <h4>吃这些美食才不算辜负自己</h4> <p>餐厨起居洗护好物</p> </div> <div class="right">¥<span>29.9</span><span>起</span></div> </div> </div>
|
CSS样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| .topic-bd .cover { position: absolute; left: 0; bottom: 0;
display: flex; justify-content: space-between; align-items: center;
padding: 0 15px; width: 405px; height: 90px; background-image: linear-gradient(180deg, rgba(137,137,137,0.00) 0%, rgba(0,0,0,0.90) 100%); }
.topic-bd .cover .left { color: #fff; }
.topic-bd .cover .left h4 { margin-bottom: 6px; font-size: 20px; }
.topic-bd .cover .right { padding: 0 7px; height: 25px; background-color: #fff; color: #AA2113; font-size: 15px; }
.topic-bd .cover .right span { font-size: 18px; }
|