博客列表 >icon图标引入和css自适应终端

icon图标引入和css自适应终端

进
原创
2022年07月11日 19:48:32542浏览

icon图标引入和css自适应终端

html代码

  1. <body>
  2. <div>
  3. <span class="iconfont icon-all all"></span>
  4. <span class="iconfont icon-pay-jingdong jingdong"></span>
  5. <span class="iconfont icon-rising rising"></span>
  6. </div>
  7. </body>

css代码

  1. @import 'icon/iconfont.css';
  2. .jingdong{
  3. color: red;
  4. font-size: 2rem;
  5. }
  6. .all{
  7. color: blue;
  8. font-size: 2rem;
  9. }
  10. .rising{
  11. color: green;
  12. font-size: 2rem;
  13. }

效果截图演示

image-20220711194145748

css自适应屏幕宽度从大到小

html代码

  1. <body>
  2. <div>
  3. <span class="iconfont icon-all all">1</span>
  4. <span class="iconfont icon-pay-jingdong jingdong">2</span>
  5. <span class="iconfont icon-rising rising">3</span>
  6. </div>
  7. </body>

css代码

  1. @import 'icon/iconfont.css';
  2. html {
  3. font-size: 16px;
  4. }
  5. .jingdong{
  6. color: red;
  7. font-size: 2rem;
  8. }
  9. .all{
  10. color: blue;
  11. font-size: 2rem;
  12. }
  13. .rising{
  14. color: green;
  15. font-size: 2rem;
  16. }
  17. @media (min-width:1001px) and (max-width:9999px) {
  18. html {
  19. font-size: 99px;
  20. }
  21. }
  22. @media (max-width:1000px) {
  23. html {
  24. font-size: 90px;
  25. }
  26. }
  27. @media (max-width:800px) {
  28. html {
  29. font-size: 63px;
  30. }
  31. }
  32. @media (max-width:600px) {
  33. html {
  34. font-size:54px ;
  35. }
  36. }
  37. @media (max-width:450px) {
  38. html {
  39. font-size: 45px;
  40. }
  41. }
  42. @media (max-width:350px) {
  43. html {
  44. font-size: 27px;
  45. }
  46. }

效果截图演示

1000px宽

image-20220711194532946

800px宽

image-20220711194557698

600px宽

image-20220711194624310

450px宽

image-20220711194648597

350px宽

image-20220711194716033

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议