Blogger Information
Blog 13
fans 0
comment 0
visits 11163
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
背景控制的常用属性、精灵图的原理与实现、阿里字体图标的完整引用流程
忠于原味
Original
759 people have browsed it

一、背景控制的常用属性

属性 描述
background-color: 指定背景颜色
background-clip: 控制背景的覆盖范围限制在内容区,裁切
background-image: 设置一个背景图片
background-image: linear-gradient(direction, color-stop1, color-stop2, ...); 创建一个线性渐变
background-repeat: 设置如何平铺对象的 background-image 属性
background-attachment: 置背景图像是否固定或者随着页面的其余部分滚动
background-position: 设置背景图像的起始位置
background-size: 指定背景图片大小
border-radius: 允许你为元素添加圆角边框等形状

具体实例代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>背景</title>
  7. <style>
  8. .box {
  9. height: 300px;
  10. width: 300px;
  11. /* border: 1px solid #000; */
  12. /* 背景色 */
  13. background-color: lightgreen;
  14. /* 内边距是透明的,只能设置宽度不能设置样式,因此,背景色默认可以从内边距透出来 */
  15. /* padding: 20px; */
  16. /* 控制背景的覆盖范围限制在内容区,裁切 */
  17. background-clip: content-box;
  18. /* 渐变色 */
  19. /* 从上到下渐变 */
  20. background: linear-gradient(red, yellow);
  21. /* 从左下45度较渐变 */
  22. background: linear-gradient(45deg, red, yellow);
  23. /* 向右渐变 */
  24. background: linear-gradient(to right, red, yellow);
  25. /* 向左渐变 */
  26. background: linear-gradient(to left, red, yellow);
  27. background: linear-gradient(to left, rgb(0, 255, 0, 0.7), red, yellow);
  28. /* 背景图片 */
  29. background: url("girl.jpg");
  30. background-repeat: no-repeat;
  31. /* background-attachment: fixed; */
  32. /* 背景定位: 位置 */
  33. /* background-position: 50px 60px; */
  34. /* 用关键字时关键字的顺序无所谓 */
  35. /* background-position: right center; */
  36. /* background-position: center right; */
  37. /* 只写一个,第二个默认就是center */
  38. /* background-position: left; */
  39. /* background-position: 50% 20%; */
  40. /* 只写第一个,第二个默认与第一个一样 */
  41. /* background-position: 50%; */
  42. /* background-size: contain; */
  43. background-size: cover;
  44. /* 简写 */
  45. /* 图片背景色和背景互斥 */
  46. background: url("girl.jpg") no-repeat center;
  47. position: relative;
  48. left: 0px;
  49. top: 30px;
  50. /* 设置盒子阴影 */
  51. /* box-shadow: 5px 8px 6px lawngreen; */
  52. /* 添加圆角 */
  53. border-radius: 150px;
  54. }
  55. .box:hover {
  56. /* 外发光 */
  57. box-shadow: 0 0 10px lightcoral;
  58. }
  59. </style>
  60. </head>
  61. <body>
  62. <div class="box"></div>
  63. </body>
  64. </html>

我最终实现的效果预览:


二、精灵图的原理与实现

  • 精灵图原理: 把网页中一些背景图片整合到一张图片文件中,再利用 CSS 的”background-image”,”background-repeat”,”background-position”的组合进行背景定位,background-position 可以用数字精确地定位出背景图片的位置。

  • 精灵图实现案例代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>背景实战:精灵图/雪碧图</title>
  7. <style>
  8. .box1 {
  9. width: 500px;
  10. height: 400px;
  11. border: 1px solid #000;
  12. background-image: url("1.png");
  13. background-repeat: no-repeat;
  14. background-position: 50px 20px;
  15. }
  16. .box2 {
  17. width: 110px;
  18. height: 110px;
  19. background-image: url("1.png");
  20. background-repeat: no-repeat;
  21. background-position: -220px -110px;
  22. }
  23. .box3 {
  24. width: 110px;
  25. height: 110px;
  26. background-image: url("1.png");
  27. background-repeat: no-repeat;
  28. background-position: 0px -220px;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="box1"></div>
  34. <div class="box2"></div>
  35. <div class="box3"></div>
  36. </body>
  37. </html>

效果预览:

  • 综上可知精灵图优点:
    ① 减少网页的 http 请求,从而加快了网页加载速度,提高用户体验。
    ② 减少图片的体积,因为每个图片都有一个头部信息,把多个图片放到一个图片里,就会共用同一个头信息,从而减少了字节数。
    ③ 解决了网页设计师在图片命名上的困扰,只需对一张集合的图片上命名就可以了,不需要对每一个小元素进行命名。

④ 更换风格方便,只需要在一张或少张图片上修改图片的颜色或样式,整个网页的风格就可以改变。

三、阿里字体图标的完整引用流程

1.上网搜索阿里字体库:https://www.iconfont.cn/,并登录(用 github 或微博账号登录) 2.找到自己需要的字体图标(加入购物车后右上角的购物车图标会显示你加入的数量): 3.选好后点击右上角购物车进入本页面,点击添加至项目: 4.这里创建一个项目(这里我之前已经创建好了一个)后点击确定: 5.之前所选的字体图标已经加入到项目里了,现在点击下载到本地: 6.下载后解压压缩包,打开这个demo.index.html网页(这个网页就是提供使用字体图标的引用方法): 7.打开网页后,这里提供三种方法,下面有正确引用的方法步骤:

最后附上三种方法效果图:



综上使用字体图标库的优点:
轻量级: 一个图标字体要比一系列的图像要小。一旦字体加载了,图标就会马上渲染出来,不需要下载一个个图像。这样可以减少 HTTP 的请求数量,而且和 HTML5 的离线存储配合,可以对性能做出优化。
灵活性: 不调字体可以像页面中的文字一样,通过 font-size 属性来对其进行大小的设置,而且还可以添加各种文字效果,如 color、hover、filter、text-shadow、transform 等效果。灵活的简直不像话!
兼容性: 图标字体支持现代浏览器,甚至是低版本的 IE 浏览器,所以可以放心的使用它。相比于位图放大图片会出现失真、缩小又会浪费掉像素点,图标字体不会出现这种情况。

Correcting teacher:查无此人查无此人

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