文章目录
背景颜色:background-color
设置背景颜色
.box1{
width: 500px;
height: 500px;
background-color: thistle;
}
背景图片:background-image
.box1{
width: 500px;
height: 500px;
background-image: url("IMG/7.png");
}
背景图片和容器的大小关系
- 如果背景的图片小于元素,则背景图片会自动在元素中平铺,将元素填满
- 如果背景的图片大于元素,将会一个部分背景无法完全显示
- 如果背景图片和元素一样大,则会直接正常显示
background-color 和 background-image 可以一起使用,这样背景颜色将会成为图片的背景色
.box1{
width: 500px;
height: 500px;
background-color: thistle;
background-image: url("IMG/7.png");
}
background-repeat
background-repeat用来设置背景的重复方式
可选值:
-
repeat默认值,背景会沿着x轴y轴双方向重复
-
repeat-x沿着x轴方向重复
-
repeat-y沿着y轴方向重复
-
no-repeat背景图片不重复
background-position
background-position用来设置背景图片的位置
设置方式一:
通过top left right bottom center
几个表示方位的词来设置图片的位置。
九宫格位置:
.box1{
width: 500px;
height: 500px;
background-color: thistle;
background-image: url("IMG/7.png");
background-repeat: no-repeat;
background-position:center center;
}
使用方位词时必须要同时指定两个值,如果只写一个则第二个默认就是center。
设置方式二
通过偏移量来指定背景图片的位置:
水平方向偏移量,垂直方向偏移量
eg:
.box1{
width: 500px;
height: 500px;
background-color: thistle;
background-image: url("IMG/7.png");
background-repeat: no-repeat;
background-position:-100px 300px;
}
输出:
background-clip
设置背景的范围
background-clip
可选值:
- border-box默认值,背景会出现在边框的下边
.box1{
width: 500px;
height: 500px;
background-color: thistle;
background-image: url("IMG/7.png");
background-repeat: no-repeat;
border: 10px red double;
background-clip: border-box;
}
-
padding-box背景不会出现在边框,只出现在内容区和内边距
-
content-box背景只会出现在内容区
.box1{
width: 500px;
height: 500px;
background-color: thistle;
background-image: url("IMG/7.png");
background-repeat: no-repeat;
border: 10px red double;
padding: 20px;
background-clip:content-box;
}
background-origin
background-origin背景图片的偏移量计算的原点
-
padding-box默认值,background-position从内边距处开始计算
-
content-box背景图片的偏移量从内容区处计算
-
border-box背景图片的变量从边框处开始计算
background-size
background-size设置背景图片的大小
- 第一个值表示宽度,第二个值表示高度
- 如果只写一个,则第二个值默认是auto
- 如果只写一个参数默认写的是宽度
eg:
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<style>
.box1{
width: 500px;
height: 500px;
background-image: url("IMG/5.jpg");
background-repeat: no-repeat;
border: 10px red double;
background-position:0 0;
background-size: 100%;
}
</style>
</head>
<body>
<div class="box1">
</div>
</body>
</html>
-
cover图片的比例不变,将元素铺满
-
contain图片比例不变,将图片在元素中完整显示
background-attachment
background-attachment背景图片是否跟随元素移动
可选值:
- scroll 默认值背景图片会跟随元素移动
- fixed背景会固定在页面中,不会随元素移动
背景元素的简写
backgound背景相关的简写属性,所有背景相关的样式都可以通过该样式来设置并且该样式没有顺序要求,也没有哪个属性是必须写的
注意:
- background-size必须写在background-position的后边,并且使用/隔开
background-position/background-size - background-origin background-clip两个样式,orgin要在clip的前面
雪碧图
图片的加载问题
图片属于网页中的外部资源,外部资源都需要浏览器单独发送请求加载,浏览器加载外部资源时是按需加载的,用则加载,不用则不加载。、这就导致如果两个图片需要交替出现,由于两个图片的加载顺序不同,导致图片切换的时候会有白色空隙页面出现。
解决——雪碧图
可以将多个小图片统一保存到一个大图片中,然后通过调整background-position
来显示移动图片,通过移动到图片的不同位置达到图片的切换效果。
这样图片会同时加载到网页中(因为实际上就只有一张图片)就可以有效的避兔出现闪烁的问题。
这个技术在网页中应用十分广泛,被称为CSS-Sprite,这种图我们称为雪碧图
-
原理图示
-
雪碧图的使用步骤;
1.先确定要使用的图标
2.测量图标的大小
3.根据测量结果创建一个元素
4.将雪碧图设置为元素的背景图片
5.设置一个偏移量以显示正确的图片 -
雪碧图的特点:
一次性将多个图片加载进页面,降低请求的次数,加快访问速度,提升用户的体验。
eg:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
div{
width: 110px;
height: 150px;
}
a:link{
display: block;
width: 100%;
height: 100%;
background-image: url("IMG/8.png");
background-position: 0px 0px;
}
a:hover{
display: block;
width: 100%;
height: 100%;
background-image: url("IMG/8.png");
background-position: -110px -150px;
}
a:active{
display: block;
width: 100%;
height: 100%;
background-image: url("IMG/8.png");
background-position: -220px -150px;
}
</style>
</head>
<body>
<div>
<a href="javascript:;"></a>
</div>
</body>
</html>
正常:
悬浮:
点击:显示的是另外一个部分。
渐变——background-image
- 通过渐变可以设置一些复杂的背景颜色,可以实现从一个颜色向其他颜色过渡的效果
渐变是图片,需要通过background-image
属性来设置
线性渐变,颜色沿着一条直线发生变化
- 属性值:
linear-gradient
eg:linear-gradient(red,yellow)
红色在开头,黄色在结尾,中间是过渡区域
线性渐变的开头,我们可以指定一个渐变的方向
to left
to right
to bottom
to top
deg deg表示度数
turn表示圈
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
.box1{
width: 200px;
height: 200px;
background-image: linear-gradient(to top, red,yellow);
float: left;
}
.box2{
width: 200px;
height: 200px;
background-image: linear-gradient(45deg, red,yellow);
float: left;
}
.box3{
width: 200px;
height: 200px;
background-image: linear-gradient(.5turn, red,yellow);
float: left;
}
</style>
</head>
<body>
<div class="box1">
</div>
<div class="box2">
</div>
<div class="box3">
</div>
</body>
</html>
输出:
- 渐变可以同时指定多个颜色,多个颜色默认情况下平均分布
eg:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
.box1{
width: 1000px;
height: 600px;
background-image: linear-gradient(red,orange,rgb(235, 235, 57),rgb(91, 247, 91),rgb(102, 219, 219),rgb(74, 74, 250),purple);
}
</style>
</head>
<body>
<div class="box1">
</div>
</body>
</html>
- 也可以手动指定渐变的分布情况
颜色后面可以添加 px 数值,表示该颜色的起始位置,从该位置开始渐变
.box1{
width: 200px;
height: 200px;
background-image: linear-gradient( red 50px,yellow);
float: left;
}
repeating-linear-gradient()可以平铺线性渐变
.box1{
width: 200px;
height: 200px;
background-image: repeating-linear-gradient(red 50px,yellow 100px);
float: left;
}
background-repeat不会对该效果产生影响。
径向渐变
放射性效果
默认情况下径向渐变圆心的形状根据元素的形状来计算的:
- 正方形–>早形
- 长方形–>椭圆形
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
.box1{
width: 200px;
height: 200px;
background-image: radial-gradient(red,yellow);
}
</style>
</head>
<body>
<div class="box1">
</div>
</body>
</html>
输出:
- 我们也可以手动指定径向渐变的大小
.box1{
width: 200px;
height: 200px;
background-image: radial-gradient(100px,100px,red,yellow);
}
circle:代表圆形
ellipse:代表椭圆
- 可以使用repeating
background-image: repeating-radial-gradient(100px,100px,red,yellow);
- 可以指定渐变的起始位置
background-image: radial-gradient(100px, 100px at 0 0,red,yellow);
- 语法小结
radial-gradient(大小 at 位置,颜色 位置,颜色 位置,颜色 位置)
大小:
circle圆形
ellipse 椭圆
closest-side 近边
closest-corner近角
farthest-side远边
farthest-corner远角
位置:
top right left center bottom