1 什么是CSS

1.1 什么是CSS

Cascading Style Sheet 层叠样式表

CSS:表现(美化网页)

字体,颜色,边距,高度,宽度,背景图片,网页定位,网页浮动

1.2 发展史

CSS1.0

CSS2.0:DIV(块)+CSS,HTML与CSS结构分离的思想,网页变得简单,搜索引擎优化(SEO)

CSS2.1:浮动,定位

CSS3.0:圆角、阴影、动画…浏览器兼容性~

2 快速入门

2.1 练习格式

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <!--规范,<style>可以编写CSS的代码,每一个声明最好以“;”结尾
  7. 语法:
  8. 选择器{
  9. 声明1;
  10. 声明2;
  11. 声明3;
  12. }
  13. -->
  14. <style>
  15. h1{
  16. color: crimson;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <h1>CSS测试</h1>
  22. </body>
  23. </html>

image.png

建议使用这种规范(单独写一个css文件,用link标签引入css文件效果

image.png

2.2 CSS的优势

  1. 内容和表现分离;
  2. 网页结构表现统一,可以实现复用
  3. 样式十分的丰富
  4. 建议使用独立于html的css文件
  5. 利用SEO,容易被搜索引擎收录!

2.3 CSS的3种常用导入方式

  1. 行内样式
  2. 内部样式表
  3. 外部样式表
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <!--外部样式-->
  7. <link rel="stylesheet" href="css/style.css" />
  8. <style><!--内部样式-->
  9. h1{
  10. color: green;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <!--优先级:就近原则 行内样式 > 内部样式 > 外部样式-->
  16. <!--行内样式:在标签元素中,编写一个style属性,编写样式即可-->
  17. <h1 style="color: red; font-size: 25px;">这是标签</h1>
  18. </body>
  19. </html>

拓展:外部样式两种方法

  • 链接式
    html
  • 导入式
    @import是CSS2.1特有的!渐渐不用
  1. <!--外部样式-->
  2. <link rel="stylesheet" href="css/style.css" />
  3. <!--导入式-->
  4. <style>
  5. @import url("css/style.css");
  6. </style>

2 选择器

作用:选择页面上的某一个后者某一类元素

2.1、基本选择器

标签选择器

选择一类标签

格式: 标签 { }

  1. <head>
  2. <meta charset="UTF-8">
  3. <title>Title</title>
  4. <style>
  5. h1 {
  6. color: orange;
  7. background: blue;
  8. border-radius: 20px;
  9. }
  10. h3 {
  11. color: orange;
  12. background: blue;
  13. border-radius: 10px;
  14. }
  15. p {
  16. font-size: 40px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <h1>标签选择器1</h1>
  22. <p>标签选择器2</p>
  23. <h3>标签选择器3</h3>
  24. </body>

image.png

类选择器class

选择所有class一致的标签,跨标签

格式: .类名 { }

  1. <head>
  2. <meta charset="UTF-8">
  3. <title>Title</title>
  4. <style>
  5. /*类选择器的格式 .class的名称{}
  6. 好处:可以多个标签归类,是同一个class,可以复用*/
  7. .demo1 {
  8. color: blue;
  9. }
  10. .demo2 {
  11. color: red;
  12. }
  13. .demo3 {
  14. color: #5cdb32;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <h4 class="demo1">类选择器:demo1</h4>
  20. <h4 class="demo2">类选择器:demo2</h4>
  21. <h4 class="demo3">类选择器:demo3</h4>
  22. <p class="demo3">p标签</p>
  23. </body>

image.png

id 选择器

全局唯一

格式: #id名{}

  1. <head>
  2. <meta charset="UTF-8">
  3. <title>Title</title>
  4. <style>
  5. /*id选择器:id必须保证全局唯一
  6. #id名称{}
  7. 不遵循就近原则,优先级是固定的
  8. id选择器 > class类选择器 > 标签选择器
  9. */
  10. #demo1 {
  11. color: red;
  12. }
  13. .demo2 {
  14. color: green;
  15. }
  16. #demo2 {
  17. color: orange;
  18. }
  19. h1 {
  20. color: blue;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <h1 id="demo1" class="demo2">id选择器:demo1</h1>
  26. <h1 class="demo2" id="demo2">id选择器:demo2</h1>
  27. <h1 class="demo2">id选择器:demo3</h1>
  28. <h1>id选择器:demo4</h1>
  29. <h1>id选择器:demo5</h1>
  30. </body>

image.png

优先级:id > class > 标签

2.2 高级选择器

层次选择器

  • 后代选择器:在某个元素的后面
  1. body p {
  2. background:red;
  3. }
  • 子选择器:一代
  1. body > p {
  2. background: orange;
  3. }
  • 相邻的兄弟选择器:选择紧接在一个元素后的元素,而且二者有相同的父元素
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. h3 + p {
  6. color: red;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <h3>This is a heading.</h3>
  12. <p>This is paragraph.</p>
  13. <p>This is paragraph.</p>
  14. </body>
  15. </html>

image.png

  • 通用兄弟选择器: 当前选中元素的向下的所有兄弟元素
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <style>
  5. .active ~ p {
  6. background: red;
  7. }
  8. </style>
  9. <body>
  10. <p>p0</p>
  11. <p class="active">p1<p>
  12. <p>p2</p>
  13. <p>p3</p>
  14. </body>
  15. </html>

image.png

结构伪类选择器

  1. <!DOCTYPE HTML>
  2. <html lang="zh">
  3. <head>
  4. <style>
  5. ul li:first-child { /*ul的第一个子元素*/
  6. background: aqua;
  7. }
  8. ul li:last-child { /*ul的最后一个子元素*/
  9. background: blue;
  10. }
  11. /*选中p1:定位到父元素,选择当前的第一个元素
  12. 选择当前p元素的父级元素,选中父级元素的第一个,并且是当前元素才生效!*/
  13. p:nth-child(1) {
  14. background: orange;
  15. }
  16. p:nth-of-type(2) { /*选中父元素下的,第2个p元素*/
  17. background: red;
  18. }
  19. a:hover {
  20. color: green;
  21. }
  22. </style>
  23. <title>结构伪类选择器</title>
  24. </head>
  25. <body>
  26. <!-- <a href="">123</a> -->
  27. <p>p1</p>
  28. <p>p2</p>
  29. <p>p3</p>
  30. <h3>h3</h3>
  31. <ul>
  32. <li>1li1</li>
  33. <li>1li2</li>
  34. <li>1li3</li>
  35. </ul>
  36. <ul>
  37. <li>2li1</li>
  38. <li>2li2</li>
  39. <li>2li3</li>
  40. </ul>
  41. <a href="https://www.baidu.com">百度</a>
  42. </body>
  43. </html>

image.pngimage.png

属性选择器(常用)

属性选择器可以根据元素的属性及属性值来选择元素

  1. <!DOCTYPE HTML>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. .demo a {
  8. float: left;
  9. display: block;
  10. margin-right: 5px;
  11. height: 50px;
  12. width: 50px;
  13. border-radius: 10px;
  14. background: aquamarine;
  15. text-align: center;
  16. color: gray;
  17. text-decoration: none;
  18. /*line-height:50px;*/
  19. font: bold 20px/50px Arial;
  20. }
  21. /* 属性名,属性名=属性值(正则)
  22. = 表示绝对等于
  23. *= 表示包含
  24. ^= 表示以...开头
  25. $= 表示以...结尾
  26. 存在id属性的元素
  27. a[id]{}
  28. */
  29. a[id] {
  30. background: yellow;
  31. }
  32. a[id=first] { /*id=first的元素*/
  33. background: green;
  34. }
  35. a[class*="links"] { /*class 中有links的元素*/
  36. background: bisque;
  37. }
  38. a[href^=http] { /*选中href中以http开头的元素*/
  39. background: aquamarine;
  40. }
  41. a[href$=pdf] { /*选中href中以http开头的元素*/
  42. background: aquamarine;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <p class="demo">
  48. <a href="http:www.baidu.com" class="links item first" id="first">1</a>
  49. <a href="" class="links item active" target="_blank " title="test">2</a>
  50. <a href="images/123.html" class="links item">3</a>
  51. <a href="images/1.png" class="links item">4</a>
  52. <a href="images/1.jpg" class="links item">5</a>
  53. <a href="abc" class="links item">6</a>
  54. <a href="/a.pdf" class="links item">7</a>
  55. <a href="/abc.pdf" class="links item">8</a>
  56. <a href="abc.doc" class="links item">9</a>
  57. <a href="abcd.doc" class="links item last">10</a>
  58. </p>
  59. </body>
  60. </html>

image.png

3 美化网页元素

3.1 为什么要美化网页

  1. 有效的传递页面信息
  2. 美化网页,页面漂亮才能吸引客户
  3. 凸显页面的主题
  4. 提高用户的体验

span标签:重点要突出的字,使用span标签套起来

  1. <!DOCTYPE HTML>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. #title1 {
  8. font-size: 30px;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. 学习语言<span id="title1">JAVA</span>
  14. </body>
  15. </html>

image.png

3.2 字体样式

  • font-family:字体
  • font-size:字体大小
  • font-weight:字体粗细
  • color:字体颜色
  1. <head>
  2. <meta charset="UTF-8">
  3. <title>Title</title>
  4. <style>
  5. body {
  6. font-family:"Arial Black", 楷体;
  7. color: red;
  8. }
  9. h1 {
  10. font-size: 40px;
  11. }
  12. .p1 {
  13. font-weight: 600;
  14. color: gray;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <h1>标题</h1>
  20. <p>正文11111</p>
  21. <p class="p1">正文2222222</p>
  22. <p>i love study java</p>
  23. </body>

image.png

常用写法:

  1. /*也可以填px,但不能超过900,相当于bloder*/
  2. font-weight:bolder;
  3. /*常用写法:*/
  4. font:oblique bloder 12px "楷体"

3.3 文本样式

  1. 颜色 color: rgb() / rgba() 多个透明度
  2. 文本对齐方式 text-align: center
  3. 首行缩进 text-indent: 2em
  4. 行高 line-height: 300px;
  5. 装饰 text-decoration: none; 去下划线
  1. text-decoration:underline /*下划线*/
  2. text-decoration:line-through /*中划线*/
  3. text-decoration:overline /*上划线*/
  4. text-decoration:none /*超链接去下划线*/
  1. 图片、文字水平对齐 vertical-align
  1. img, span {
  2. vertical-align:middle;
  3. }

3.4-5 文本,阴影和超链接伪类

  1. <style>
  2. a { /*超链接有默认的颜色*/
  3. text-decoration:none;
  4. color:#000000;
  5. }
  6. a:hover{ /*鼠标悬浮的状态*/
  7. color:orange;
  8. }
  9. a:active{ /*鼠标按住未释放的状态*/
  10. color:green
  11. }
  12. a:visited{/*点击之后的状态*/
  13. color:red
  14. }
  15. a:link{
  16. background: bisque;
  17. }
  18. </style>

阴影:

  1. /* 第一个参数:表示水平偏移
  2. 第二个参数:表示垂直偏移
  3. 第三个参数:表示模糊半径
  4. 第四个参数:表示颜色
  5. */
  6. text-shadow:5px 5px 5px 颜色

3.6 列表ul li

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link href="css/style.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body>
  9. <div id="nav">
  10. <h2 class="title">全部商品分类</h2>
  11. <ul>
  12. <li>
  13. <a href="#">图书</a>
  14. <a href="#">音像</a>
  15. <a href="#">数字商品</a>
  16. </li>
  17. <li>
  18. <a href="#">家用电器</a>
  19. <a href="#">手机</a>
  20. <a href="#">数码</a>
  21. </li>
  22. <li>
  23. <a href="#">电脑</a>
  24. <a href="#">办公</a>
  25. </li>
  26. <li>
  27. <a href="#">家居</a>
  28. <a href="#">家装</a>
  29. <a href="#">厨具</a>
  30. </li>
  31. <li>
  32. <a href="#">服饰鞋帽</a>
  33. <a href="#">个性化妆</a>
  34. </li>
  35. <li>
  36. <a href="#">礼品箱包</a>
  37. <a href="#">钟表</a>
  38. <a href="#">珠宝</a>
  39. </li>
  40. <li>
  41. <a href="#">食品饮料</a>
  42. <a href="#">保健食品</a>
  43. </li>
  44. <li>
  45. <a href="#">彩票</a>
  46. <a href="#">旅行</a>
  47. <a href="#">充值</a>
  48. <a href="#">票务</a>
  49. </li>
  50. </ul>
  51. </div>
  52. </body>
  53. </html>

image.png

css代码:

list-style

  1. #nav{
  2. width: 150px;
  3. background: antiquewhite;
  4. }
  5. .title{
  6. font-size: 18px;
  7. font-weight: bold;
  8. text-indent: 1em; /*缩进*/
  9. line-height: 35px;
  10. background: red;
  11. }
  12. /*ul li*/
  13. /*
  14. list-style:
  15. non 去掉实心圆
  16. circle 空心圆
  17. square 正方形
  18. */
  19. /*ul{!*nav替换效果*!
  20. background: antiquewhite;
  21. }*/
  22. ul li{
  23. height: 30px;
  24. list-style: none;
  25. text-indent: -1.5em;
  26. }
  27. a {
  28. text-decoration: none;
  29. font-size: 14px;
  30. color: black;
  31. }
  32. a:hover {
  33. color: burlywood;
  34. text-decoration: underline;
  35. }

3.7 背景

  1. 背景颜色:background
  2. 背景图片
  1. background-image:url("");/*默认是全部平铺的*/
  2. background-repeat:repeat-x/*水平平铺*/
  3. background-repeat:repeat-y/*垂直平铺*/
  4. background-repeat:no-repeat/*不平铺*/
  5. background: red url("xxx") 160px 10px no-repeat;/*背景红色 图片地址 位置 不平铺*/

3.8 渐变

渐变背景网址:https://www.grabient.com

径向渐变、圆形渐变

  1. body{
  2. background-color: #4158D0;
  3. background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
  4. }

4 盒子模型

4.1 什么是盒子模型

image.png

  • margin:外边距
  • border:边框 border:粗细 样式 颜色 border 1px solid red;
  • padding:内边距

4.2 外边距——妙用:居中

margin-left/right/top/bottom–>表示四边,可分别设置,也可以同时设置如下

  1. margin:0 0 0 0 /*分别表示上、右、下、左;从上开始顺时针*/
  2. margin:0 auto /*居中 auto表示左右自动*/
  3. margin:4px /*表示上、右、下、左都为4px*/
  4. margin:10px 20px 30px /*表示上为10px,左右为20px,下为30px*/

4.3 盒子的计算方式

margin+border+padding+内容的大小

总结:

body总有一个默认的外边距

常见操作:初始化 margin:0

4.4 圆角边框——border-radius

  1. <style>
  2. div{
  3. width: 100px;
  4. height: 100px;
  5. border: 10px solid red;
  6. /*一个border-radius只管一个圆的1/4*/
  7. border-radius: 50px 20px 20px 30px;/*左上 右上 右下 左下 ,顺时针方向*/
  8. }
  9. </style>

4.5 盒子阴影

  1. box-shadow: 10px 10px 1px black;

5 浮动

5.1 标准文档流

块级元素:独占一行 h1~h6 、p、div、 列表…

行内元素:不独占一行 span、a、img、strong

注: 块级元素可以包含行内元素,反之则不可以

5.2 display(重要)

display

  1. block:块元素
  2. inline:行内元素
  3. inline-block:是块元素,但是可以内联,在一行

这也是一种实现行内元素排列的方式,但是我们很多情况用float

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <!--block 块元素
  7. inline 行内元素
  8. inline-block 是块元素,但是可以内联 ,在一行
  9. -->
  10. <style>
  11. div{
  12. width: 100px;
  13. height: 100px;
  14. border: 1px solid red;
  15. display: inline-block;
  16. }
  17. span{
  18. width: 100px;
  19. height: 100px;
  20. border: 1px solid red;
  21. display: inline-block;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div>div块元素</div>
  27. <span>span行内元素</span>
  28. </body>
  29. </html>

image.png

5.3 float:left/right 左右浮动

clear:both

5.4 overflow及父级边框塌陷问题

clear:

right:右侧不允许有浮动元素

left:左侧不允许有浮动元素

both:两侧不允许有浮动元素

none:

解决塌陷问题方案:

方案一:增加父级元素的高度;

方案二:增加一个空的div标签,清除浮动

  1. <div class = "clear"></div>
  2. <style>
  3. .clear{
  4. clear:both;
  5. margin:0;
  6. padding:0;
  7. }
  8. </style>

方案三:在父级元素中增加一个overflow属性

  1. overflow:hidden /*隐藏超出部分*/
  2. overflowscoll /*滚动*/

方案四:父类添加一个伪类:after

  1. #father:after{
  2. content:'';
  3. display:block;
  4. clear:both;
  5. }

小结:

  1. 浮动元素增加空div ——> 简单、代码尽量避免空div
  2. 设置父元素的高度 ——-> 简单,但是元素假设有了固定的高度,可能就会超出范围
  3. overflow ——> 简单,下拉的一些场景避免使用
  4. 父类添加一个伪类:after(推荐)——> 写法稍微复杂,但是没有副作用,推荐使用

5.5 display与float对比

  1. display:方向不可以控制
  2. float:浮动起来的话会脱离标准文档流,所以要解决父级边框塌陷的问题。

6 定位

6.1 相对定位

相对定位:positon:relstive

相对于自己原来的位置,进行指定的偏移,相对定位的话,它仍然在标准文档流中!原来的位置会被保留

  1. top:-20px; /*向上偏移20px*/
  2. left:20px; /*向右偏移20px*/
  3. bottom:10px; /*向上偏移10px*/
  4. right:20px; /*向左偏移20px*/
  5. <!DOCTYPE html>
  6. <html lang="en">
  7. <head>
  8. <meta charset="UTF-8">
  9. <title>相对定位</title>
  10. <!--相对定位
  11. 相对于自己原来的位置进行偏移
  12. -->
  13. <style>
  14. body{
  15. padding: 20px;
  16. }
  17. div{
  18. margin: 10px;
  19. padding: 5px;
  20. font-size: 12px;
  21. line-height: 25px;
  22. }
  23. #father {
  24. border: #ffa538 1px solid;
  25. padding: 0;
  26. }
  27. #first {
  28. border: #b3ff38 1px solid;
  29. background-color: #ffa538;
  30. position: relative; /*相对定位:上下左右*/
  31. top: -20px; /*向上偏移20px*/
  32. left: 20px; /*向右偏移20px*/
  33. }
  34. #second {
  35. border: #427b11 1px solid;
  36. background-color: #66c77f;
  37. }
  38. #third {
  39. background-color: #b3ff38;
  40. border: #38d7ff 1px solid;
  41. position: relative;
  42. bottom: 10px; /*向上偏移10px*/
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <div id="father">
  48. <div id="first">第一个盒子</div>
  49. <div id="second">第二个盒子</div>
  50. <div id="third">第三个盒子</div>
  51. </div>
  52. </body>
  53. </html>

image.png

练习:

image.png

  1. <style>
  2. #box{
  3. height: 300px;
  4. width: 300px;
  5. border: 2px red solid;
  6. padding: 10px;
  7. }
  8. a{
  9. height: 100px;
  10. width: 100px;
  11. background-color: #ee73b7;
  12. color: white;
  13. text-align: center;
  14. text-decoration: none;
  15. line-height: 100px; /*设置行距100px*/
  16. display: block; /*设置方块*/
  17. }
  18. a:hover{
  19. background: #4158D0;
  20. }
  21. .a2, .a4{
  22. position: relative;
  23. left: 200px;
  24. top: -100px;
  25. }
  26. .a5{
  27. position: relative;
  28. left: 100px;
  29. top: -300px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div id="box">
  35. <div class="a1"><a href="" >连接1</a></div>
  36. <div class="a2"><a href="" >连接2</a></div>
  37. <div class="a3"><a href="" >连接3</a></div>
  38. <div class="a4"><a href="" >连接4</a></div>
  39. <div class="a5"><a href="" >连接5</a></div>
  40. </div>
  41. </body>

6.2 绝对定位-absolute和固定定位-fixed

绝对定位

定位:基于xxx定位,上下左右~

1、没有父级元素定位的前提下,相对于浏览器定位

2、假设父级元素存在定位,我们通常会相对于父级元素进行偏移

3、在父级元素范围内移动

总结:相对一父级或浏览器的位置,进行指定的偏移,绝对定位的话,它不在标准文档流中,原来的位置不会被保留

  1. <head>
  2. <meta charset="UTF-8">
  3. <title>Title</title>
  4. <style>
  5. body{
  6. height: 1000px;
  7. }
  8. div:nth-of-type(1){
  9. width: 100px;
  10. height: 100px;
  11. background-color: red;
  12. position: absolute; /*absolute 绝对定位*/
  13. right: 0;
  14. bottom: 0;
  15. }
  16. div:nth-of-type(2){
  17. width: 50px;
  18. height: 50px;
  19. background-color: #b3ff38;
  20. position: fixed; /*fixed 固定定位*/
  21. right: 0;
  22. bottom: 0;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div>div1</div>
  28. <div>div2</div>
  29. </body>

image.png

6.3 z-index

image.png

图层-z-index:默认是0,最高无限~999

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link rel="stylesheet" href="css/style.css" type="text/css">
  7. <style></style>
  8. </head>
  9. <body>
  10. <div id="content">
  11. <ul>
  12. <li><img src="images/2020.jpg" alt=""/></li>
  13. <li class="tipText">学习</li>
  14. <li class="tipBg"></li>
  15. <li>时间:2099-01-01</li>
  16. <li>地点:月球一号基地</li>
  17. </ul>
  18. </div>
  19. </body>
  20. </html>

css代码:

  1. #content{
  2. width: 380px;
  3. padding: 0px;
  4. margin: 0px;
  5. overflow: hidden;
  6. font-size: 12px;
  7. line-height: 25px;
  8. border: 1px solid red;
  9. }
  10. ul,li{
  11. padding: 0px;
  12. margin: 0px;
  13. list-style: none;
  14. }
  15. /*父级元素相对定位*/
  16. #content ul{
  17. position: relative;
  18. }
  19. .tipText,.tipBg{
  20. position: absolute;
  21. width: 380px;
  22. height: 25px;
  23. top:216px
  24. }
  25. .tipText{
  26. color: white;
  27. z-index: 999;
  28. }
  29. .tipBg{
  30. background: orange;
  31. opacity: 0.5;/*背景透明度*/
  32. filter: alpha(opacity=50);
  33. }

image.png

7 动画及视野拓展

css做动画过于繁琐,已有很多工具间接性做出

百度搜索canvas动画、卡巴斯基监控站(仅作了解)

8、总结

image.png