文章目录
3. CSS的背景
通过CSS 背景属性,可以给页面元素添加背景样式。
背景属性可以设置背景颜色、背景图片、背景平铺、背景图片位置、背景图像固定等。
3.1 背景颜色
background-color属性定义了元素的背景颜色。
background-color:颜色值;
一般情况下元素背景颜色默认值是transparent(透明),我们也可以手动指定背景颜色为透明色。
eg : 15-背景颜色.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 200px;
height: 200px;
/* background-color: transparent; 透明的,清澈的 */
background-color: pink;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
网页显示
3.2 背景图片
background-image属性描述了元素的背景图像。实际开发常见于logo或者一些装饰性的小图片或者是超大的背景图片,优点是非常便于控制位置.(精灵图也是一种运用场景)
比如王者荣耀这个logo
还有一些装饰性的小图片
一般都是用背景图片
语法
background-image : none | url (url)
参数值 | 作用 |
---|---|
none | 无背景图(默认的) |
url | 使用绝对或相对地址指定背景图像 |
eg. 16-背景图片.html
(其中保存一个王者荣耀logo图片在相同路径image/logo.png)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 300px;
height: 300px;
/* 不要落下url() */
background-image: url(images/logo.png);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
网页显示
默认时平铺,上图,沿x,y轴平铺
3.3 背景平铺
如果需要在HTML页面上对背景图像进行平铺,可以使用background-repeat属性。
background-repeat:repeat | no-repeat | repeat-x | repeat-y
参数值 | 作用 |
---|---|
repeat | 背景图像在纵向和横向上平铺(默认的) |
no-repeat | 背景图像不平铺 |
repeat-x | 背景图像在横向上平铺 |
repeat-y | 背景图像在纵向平铺 |
eg . 17-背景平铺.html
(每一种写法都有,但是代码块中只显示沿着y轴平铺,其他被注释掉了,可以更改)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 300px;
height: 300px;
background-image: url(images/logo.png);
/* 1 背景图片不平铺 */
/* background-repeat: no-repeat; */
/* 2 默认的情况下,背景图片都是平铺的 */
/* background-repeat: repeat; */
/* 3 沿着x轴平铺 */
/* background-repeat: repeat-x; */
/* 4 沿着y轴平铺 */
background-repeat: repeat-y;
/* 页面元素既可以添加背景颜色也可以添加背景图片 只不过背景图片会压住背景颜色 */
}
</style>
</head>
<body>
<div></div>
</body>
</html>
网页显示
3.4 背景图片位置
利用background-position属性可以改变图片在背景中的位置。
background-position: x y;
参数代表的意思是∶x坐标和y坐标。可以使用方位名词或者精确单位
参数值 | 说明 |
---|---|
length | 百分数|由浮点数字和单位标识符组成的长度值 |
position | top | center | bottom | left | center | right 方位名词 |
- 参数是方位名词
- 如果指定的两个值都是方位名词,则两个值前后顺序无关,比如left top和top left效果一致
- 如果只指定了一个方位名词,另一个值省略,则第二个值默认居中对齐
eg : 18-背景位置-方位名词.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 300px;
height: 300px;
background-color: pink;
background-image: url(images/logo.png);
background-repeat: no-repeat;
/* background-position: 方位名词; */
/* background-position: center top; */
/* background-position: center right; */
/* 如果是方位名词right center和 center right效果是等价的跟顺序没有关系 */
/* background-position: right center; */
/* 此时 水平一定是靠右侧对齐 第二个参数省略 y轴是 垂直居中显示的 */
background-position: right;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
网页显示(此处logo图片没有搞好,最好用后面小插曲中的扒图,就不要使用截图)
背景位置案例一
王者荣耀中(红色框)设计
小的图片就用背景图片,不要用之前学的图片插入,不好调整
eg : 19-背景位置方位名词应用一.html
(提前在相同路径保存一个图片image/icon.png)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
h3 {
width: 118px;
height: 40px;
background-color: pink;
font-size: 14px;
font-weight: 400;
line-height: 40px;
background-image: url(images/icon.png);
background-repeat: no-repeat;
background-position: left center;
text-indent: 1.5em;
}
</style>
</head>
<body>
<h3>成长守护平台</h3>
</body>
</html>
网页显示
此处背景颜色用的粉色,因为可以方便观察到此处盒子大小,等到实际应用,就使用合适的颜色
背景位置案例二—王者荣耀背景图片
大图片一般也不用插入图片的方法,用背景图片
eg : 20-背景位置方位名词应用二.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>超大背景图片</title>
<style>
body {
background-image: url(images/king.jpg);
background-repeat: no-repeat;
background-position: center top;
}
</style>
</head>
<body>
</body>
</html>
网页显示
小插曲:从网上扒图
(例如下图)
提供方法:(还有别的简单方法,但是此处方法保证“应景”)
页面右键检查—>找到对应代码块区域—>图片中最下面方框即为图片链接—>链接右键打开新的标签页即可去下载
- 参数是精确单位