CSS background-image 背景图像
背景图像background-image会放在所指定的背景颜色之上。不过对于有alpha通道的图像格式,如PNG,可能会部分或完全透明,这会导致图像与背景色结合。另外,如果出于某种原因无法加载图像,背景色会取代图像
值: <url> | none | inherit
初始值: none
应用于: 所有元素
继承性: 无
CSS background-image背景图片相关介绍
这里将会介绍如何通过background-image设置背景图片,以及背景图片的平铺、拉伸、偏移、设置大小等操作。
1. 背景图片样式分类
CSS中设置元素背景图片及其背景图片样式的属性主要以下几个:
background-image :设置元素的背景图片。
background-repeat :设置如何平铺背景图片。
background-attachment :设置背景图片是否固定或随着滚动移动。
background-position :设置背景图片的位置。
background-size :设置背景图片的大小。
下面将详细说明各属性。
2. background-image :设置元素的背景图片
说明:可设置元素的1个或多个背景图片。
语法:<bg-image> [ , <bg-image> ]* | none
默认值:none。 // 不设置元素的背景图片。
扩展:W3C规范、MDN资料
2.1 设置单个背景图片
说明:默认情况下背景图片进行横向和纵向平铺。
background-image:url('https://www.qiquanji.com/data/img/dmj/201905241558663283598671.jpg');
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> body{ background-image:url('https://www.qiquanji.com/data/img/dmj/201905241558663283598671.jpg'); } </style> </head> <body> <div class="tt"></div> </body> </html>
2.2 设置多个背景图片
说明:渲染时前面的背景图片在上层、后面的背景图片在下层。
background-image:url('XXX.jpg'),url('XXW.jpg');
background-repeat:no-repeat;
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> body{ background-image:url('https://www.qiquanji.com/data/img/dmj/201905241558663283598671.jpg'),url('https://www.qiquanji.com/data/img/dmj/201905241558663536127159.jpg'); background-repeat:no-repeat; } </style> </head> <body> <div class="tt"></div> </body> </html>
3. background-repeat :设置背景图片的平铺效果
说明:设置背景图片的平铺效果,包括水平、垂直。
语法:<repeat-style> [ , <repeat-style> ]*
<repeat-style> = repeat-x | repeat-y | [repeat | space | round | no-repeat]{1,2}
默认值:repeat //水平和垂直平铺
3.1 background-repeat:repeat-x | repeat-y | repeat-x | repeat-y
说明:设定背景图片水平、垂直平铺。
示例:
background-repeat:repeat-x; /* 表示水平平铺 */
background-repeat:repeat-y; /* 表示垂直平铺 */
background-repeat:repeat-x repeat-y; /* 水平和垂直平铺(默认) */
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> #dd{ width: 600px; height: 400px; border: 1px solid darkgreen; } .cc{ width: 600px; height: 100px; color: red; } .tt{ width: 600px; height: 300px; background-image:url('https://www.qiquanji.com/data/img/dmj/201905241558663283598671.jpg'); background-repeat:repeat-x; /* 表示水平平铺 */ } </style> </head> <body> <div id="dd"> <div class="cc">设置背景图片水平平铺background-repeat:repeat-x;</div> <div class="tt"></div> </div> </body> </html>
3.2 background-repeat:space | round | no-repeat
说明:设置背景图片的其他平铺效果。
示例:
background-repeat:space; /* 均匀的平铺背景图片,不会被裁剪 */
background-repeat:round; /* 水平和垂直平铺背景图片,拉伸图片以尽可能的填充背景,不会被裁剪 */
background-repeat:no-repeat; /* 不进行平铺 */
4. background-attachment :设置背景图片是否固定或随着滚动移动
说明:设置背景图片是否固定或随着滚动移动。
语法:<attachment> [ , <attachment> ]*
<attachment> = scroll | fixed | local
默认值:scroll // 背景图片跟随滚动条一直滚动
background-attachment:scroll; /* 跟随滚动条一起滚动。(默认) */
background-attachment:fixed; /* 背景图片固定位置,不随着滚动条滚动 */
background-attachment:local; /* 跟随内容一起滚动 */
4.1 background-attachment:scroll; // 跟随滚动条一直滚动。(默认)
4.2 background-attachment:local; // 跟随内容一起滚动
5. background-position :设置背景图片的位置
说明:设置背景图片的位置,可设置背景图片的4个边角水平和纵向的起始位置。
语法:<position> [ , <position> ]*
默认值:0% 0% // 背景图片左上角定位于容器左上角
5.1 background-position:10px; // 背景图片水平方向与左边缘相距10px,垂直居中
5.2 background-position:10px 20px; // 背景图片水平方向与左边缘相距0px,垂直方向与顶部边缘相距20px
5.3 background-position:left 10px bottom 20px; // 背景图片水平方向与左边缘相距10px,垂直方向与底部边缘相距20px
6. background-size :设置背景图片的大小
background-size:100px; /* 背景图片宽度为100px,高度为auto */
background-size:100px 50%; /* 背景图片宽度为100px,高度为容器高度的50% */
background-size:100% 100%; /* 背景图片宽度为容器宽度的100%,高度为容器高度的100% */
原文链接:https://www.qiquanji.com/post/8681.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。