Blogger Information
Blog 9
fans 0
comment 0
visits 5614
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
icon图标引入和css自适应终端
Original
543 people have browsed it

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

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