CSS3之背景
一、背景的基本屬性
背景主要包括五個屬性:
- background-color(背景顏色)
- background-image(背景圖片)
- background-repeat(背景圖片展示方式)
- background-attachment(背景圖片是固定還是滾動)
- background-position(背景圖片位置)
可以單獨寫,也可以將這些屬性串在一起寫。
語法規則:
background:<background-color>
<background-image>
<background-repeat>
<background-attachment>
<background-position>
1、background-color屬性
語法:background-color:transparent||<color>
預設值為transparent,不設定任何顏色值情況下是透明色。
常用的顏色格式是:
- 顏色名:如red
- rgb色:如rgb(255,0,0)或rgb(100%,0%,0%)
- hls值:如hls(0,100%,50%)
- 十六進位制值:如#eee
- rgba:如rgba(255,0,0,0.3)
- hsla:如hsla(0,100%,50%,0.5)
2、background-image屬性
語法:background-image:none||url
url是背景圖片的地址,支援相對地址或絕對地址
3、background-repeat屬性
語法:background-repeat:repeat||repeat-x||repeat-y||no-repeat
引數說明:
- repeat:背景圖片沿元素的X軸和Y軸同時平鋪
- repeat-x:背景圖片沿元素的X軸平鋪,Y軸不進行任何鋪放
- repeat-y:背景圖片沿元素的Y軸平鋪,X軸不進行任何鋪放
- no-repeat:背景圖片不做任何鋪放
4、background-attachment屬性
語法:background-attachment:scroll||fixed
用來設定元素背景圖片是否固定或者隨著頁面的其餘部分滾動。
- scroll:預設值,表示背景圖片會隨著瀏覽器滾動條一起滾動
- fixed:表示背景圖片固定不動
注意:background-attachment取值為fixed時,一般運用在html或body標籤上,使用在其它標籤上不能達到固定效果。
5、background-position屬性
語法:
background-position:<percentage>||
<length>||
[left|center|right]
[,top|center|bottom]
用來設定元素背景圖片的位置,預設值是(0,0)||(0%,0%)||(left top)
值可以是具體的百分數或數值設定(可以是負值),也可以使用關鍵詞left、center、right、top、bottom配合設定。
(1)top left
、left top
和0% 0%
、0 0
表示元素背景圖片的起點位置與元素的左上角吻合
(2)top
、top center
、center top
和50% 0
表示元素背景圖片的頂邊中心點與元素的頂邊中心點吻合
(3)right top
、top right
和100% 0
表示元素背景圖片的右上頂點與元素右上頂點吻合
(4)right
、right center
、center right
和100% 50%
表示元素背景圖片右邊中心點與元素右邊中心點吻合
(5)bottom right
、right bottom
和100 % 100%
表示元素背景圖片右下頂角與元素右下角吻合
(6)bottom
、bottom center
、center bottom
和50% 100%
表示元素背景圖片底邊中心點與元素底邊中心點吻合
(7)bottom left
、left bottom
和0% 100%
表示元素背景圖片的左下角與元素左下角吻合
(8)left
、left center
、center left
和0% 50%
表示元素背景圖片的左邊中心點與元素左邊中心點吻合
(9)center
、center center
和50% 50%
表示元素背景圖片正中心點與元素正中心點吻合
二、與背景相關的新增屬性
- background-origin:指定繪製背景圖片的起點
- background-clip:指定背景圖片的顯示範圍
- background-size:指定背景圖片的尺寸大小
- background-break:指定內聯元素的背景圖片進行平鋪時的迴圈方式
1、background-origin屬性
background-origin主要用來決定background-position屬性的參考原點,即決定背景圖片定位的起點。
語法:background-origin:padding-box||border-box||content-box
屬性值說明:
- padding-box:預設值,決定background-position起始位置從padding的外邊緣開始顯示背景圖片
- border-box:決定background-position起始位置從border的外邊緣開始顯示背景圖片
- content-box:決定background-position起始位置從content的外邊緣開始顯示背景圖片
示例效果圖:
示例程式碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css測試</title>
<style>
div {
width: 300px;
height: 200px;
border: 20px dashed rgba(0, 0, 0, 0.3);
background: orange url(img/a5.png) no-repeat left top;
padding: 20px;
margin: 30px;
}
.padding-box {
-webkit-background-origin: padding-box;
-moz-background-origin: padding-box;
-o-background-origin: padding-box;
-ms-background-origin: padding-box;
background-origin: padding-box;
}
.border-box{
-webkit-background-origin:border-box;
-moz-background-origin:border-box;
-o-background-origin:border-box;
-ms-background-origin:border-box;
background-origin:border-box;
}
.content-box{
-webkit-background-origin:content-box;
-moz-background-origin:content-box;
-o-background-origin:content-box;
-ms-background-origin:content-box;
background-origin:content-box;
}
</style>
</head>
<body>
<div class="padding-box"></div>
<div class="border-box"></div>
<div class="content-box"></div>
</body>
</html>
2、background-clip屬性
background-clip屬性用來定義背景影像的裁剪區域。
語法:background-clip:padding-box||border-box||content-box
屬性值說明:
- padding-box:背景延伸到padding的外邊緣,但不會超出邊框的範圍
- border-box:預設值,背景圖片在邊框下
- content-box:背景僅在內容區域繪製,不會超出padding和邊框的範圍
示例效果圖:
示例程式碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css測試</title>
<style>
div {
width: 300px;
height: 200px;
border: 20px dashed rgba(0, 0, 0, 0.3);
background: orange url(img/a5.png) no-repeat left top;
padding: 20px;
margin: 30px;
display: inline-block;
}
.padding-box {
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
-o-background-clip: padding-box;
-ms-background-clip: padding-box;
background-clip: padding-box;
}
.border-box {
-webkit-background-clip: border-box;
-moz-background-clip: border-box;
-o-background-clip: border-box;
-ms-background-clip: border-box;
background-clip: border-box;
}
.content-box {
-webkit-background-clip: content-box;
-moz-background-clip: content-box;
-o-background-clip: content-box;
-ms-background-clip: content-box;
background-clip: content-box;
}
</style>
</head>
<body>
<div class="padding-box"></div>
<div class="border-box"></div>
<div class="content-box"></div>
</body>
</html>
3、background-size屬性
background-size用來指定背景影像的尺寸,可以控制背景圖片在水平和垂直兩個方向的縮放,也可以控制圖片拉伸覆蓋背景區域的方式。
背景圖片能夠自適應元素盒子的大小,實現與模組大小完全適應的背景圖片,避免了因區塊尺寸不同而需要設計不同的背景圖片。
語法:background-size:auto||<length>||<percentage>||cover||contain
屬性值說明:
- auto:預設值,保持背景圖片的原始高度和寬度
- <length>:取具體的整數值,將改變背景圖片的大小
- <percentage>:取百分值,改變背景圖片的大小,但是相對於元素的寬度進行的計算,並不是根據背景圖片的寬度來進行計算
- cover:將背景圖片放大,以適合鋪滿整個容器。會使背景圖片失真。
- contain:保持背景圖片本身的寬高比例,將背景圖片縮放到寬度或高度正好適應所定義背景容器的區域。
使用示例:
div {
width: 320px;
height: 270px;
border: solid red 1px;
background: url(img/a5.png) no-repeat;
background-size:50% 80%;
}
效果圖:
使用示例2:
div {
width: 320px;
height: 270px;
border: solid red 1px;
background: url(img/a5.png) no-repeat center;
background-size:cover
}
效果圖2:
background-size:cover配合background-position:center常用來製作滿屏背景效果。
使用示例3:
div {
width: 320px;
height: 270px;
border: solid red 1px;
background: url(img/a5.png) no-repeat;
background-size:contain;
}
使用效果圖3:
整個背景影像根據背景區域對背景影像進行了寬高比例的縮放。contain在某些情況之下無法讓背景影像填充整個容器的大小。
只有當background-size的值為auto時,背景影像才不會失真,其他值都會不同程度的造成背景影像的失真,使用時請仔細考慮。
相關文章
- CSS3背景影像CSSS3
- CSS3 背景漸變CSSS3
- css3 Gradient背景CSSS3
- css3新增哪些背景屬性CSSS3
- css3背景顏色漸變CSSS3
- CSS3背景圖的定位技巧CSSS3
- 二十一、CSS3圓角半徑/多背景/背景尺寸CSSS3
- CSS3實現多種背景效果CSSS3
- CSS3 設定多個背景圖片CSSS3
- CSS3發光背景程式碼例項CSSS3
- CSS3背景裁切屬性——background-clipCSSS3
- 如何將CSS3 transforms應用於背景影象CSSS3ORM
- CSS3背景色透明(相容IE8)CSSS3
- CSS3文字動態填充背景效果CSSS3
- CSS3背景漸變效果程式碼例項CSSS3
- CSS3實現的多重背景效果程式碼CSSS3
- 魔幻般冒泡背景的CSS3按鈕動畫CSSS3動畫
- css3實現文字線性漸變,css3實現背景漸變CSSS3
- css3動態背景圖片程式碼例項CSSS3
- CSS3 background-position定位背景圖片動畫效果CSSS3動畫
- css3實現滑鼠懸浮背景上下翻滾效果CSSS3
- 真正瞭解 CSS3 背景下的 @font face 規則CSSS3
- 真正瞭解CSS3背景下的@font face規則CSSS3
- css3滑鼠懸浮背景滑動導航選單CSSS3
- CSS3 之 flexCSSS3Flex
- css3背景圖片等比例縮放鋪滿全屏CSSS3
- CSS3 元素水平運動和背景色切換動畫效果CSSS3動畫
- CSS 小結筆記之背景CSS筆記
- 影片直播系統原始碼,CSS3如何調整背景圖片大小原始碼CSSS3
- CSS3系列文章目錄三--浮動,定位,字型,文字和背景CSSS3
- CSS3之flex佈局CSSS3Flex
- CSS3 之 transform & transition & animationCSSS3ORM
- 前端筆記之HTML5&CSS3(中)選擇器&偽類偽元素&CSS3效果&漸變背景&過渡前端筆記HTMLCSSS3
- CSS3第二天(元素顯示模式、圖片背景設定)CSSS3模式
- web前端入門到實戰:用css3實現驚豔面試官的背景即背景動畫(高階附原始碼)Web前端CSSS3面試動畫原始碼
- 佈局之: flex(CSS3新增)FlexCSSS3
- CSS3動畫之逐幀動畫CSSS3動畫
- css3系列之詳解perspectiveCSSS3