Blogger Information
Blog 12
fans 0
comment 0
visits 5750
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1025作业
PHP是世界上最好的语言
Original
712 people have browsed it

作业内容:

  1. 实例演示字体的图标的使用,重点在class方式
  2. 实例演示媒体查询原理,并描述媒体查询的顺序

阿里iconfont图标的使用

准备图标

1.注册账号
2.搜索需要的图标,选择想要的图标【添加入库】

3.点击网站右上角的【购物车】图标

4.将图标【添加至项目】

使用图标——在线方式

5.更新代码

6.【点此复制代码】,在html中引入css文件,其href属性的值是我们复制的网址

  1. <link rel="stylesheet" href="http://at.alicdn.com/t/c/font_3352150_4i5winn91sr.css"/>

7.在网站中选择自己的目标图标,点击【复制代码】

8.在html中使用图标。使用span标签,class属性上添加上一步复制的图标代码

  1. <span class="iconfont icon-gouwuchekong"></span>

9.可以使用CSS调整图标样式

  1. .iconfont.icon-gouwuchekong {
  2. font-size: 28px;
  3. color: red;
  4. text-shadow: 1px 1px 1px #888;
  5. }

效果

使用图标——本地方式

5.下载图标,【下载至本地】

6.解压文件。将下面的css文件和图标字体解压到同一个目录中,比如这里是iconfont。下图下面三个是字体文件,有一个就能显示图标。

7.html文件中引入本地css文件,注意路径要正确。

  1. <link rel="stylesheet" href="iconfont/iconfont.css"/>

其他步骤同 在线方式7~9步

媒体查询

HTML

  1. <div class="content">
  2. <div class="left"></div>
  3. <div class="right"></div>
  4. </div>

CSS

  1. .content {
  2. display: flex;
  3. justify-content: center;
  4. }
  5. .left {
  6. width: 30rem;
  7. height: 20rem;
  8. background-color: red;
  9. }
  10. .right {
  11. float: left;
  12. width: 30rem;
  13. height: 20rem;
  14. background-color: blue;
  15. }
  16. @media (min-width: 1080px) {
  17. html {
  18. font-size: 16px;
  19. }
  20. }
  21. @media (min-width: 765px) and (max-width: 1080px) {
  22. html {
  23. font-size: 10px;
  24. }
  25. }
  26. @media (max-width: 765px){
  27. html {
  28. font-size: 5px;
  29. }
  30. }

效果



媒体查询的宽度顺序:

  1. 移动端: 从小往大写
  2. PC端: 反过来写,从大向下写
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:完成的很好
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post