精灵图(sprites)
使用核心:
1.精灵技术主要针对于背景图片的使用,就是把多个小背景图片整合到一张大图片中
2.移动背景图片位置,可以使用background-position
3,移动的距离就是这个目标图片的x、y坐标
4.一般情况都是往上往左移动,数值是负值
5.使用精灵图时需要精确测量,每个小背景图片的位置和大小
字体图标的使用
一般推荐下面这2种
1.阿里矢量库 https://www.iconfont.cn/
2.icomoon https://icomoon.io/app/#/select/library
温馨提示: icomoon使用的时候,download中的fonts文件夹必须和当前html文件夹处于同一个根目录下
css三角
css直接画出网页三角形
.box2 {
width: 0;
height: 0;
line-height: 0;
font-size: 0;
border: 50px solid transparent;
border-top-color: turquoise;
margin: 100px auto;
}
<!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>
.box1 {
width: 0;
height: 0;
border-top: 10px solid greenyellow;
border-right: 10px solid hotpink;
border-bottom: 10px solid blue;
border-left: 10px solid red;
}
.jd {
float: right;
position: relative;
width: 120px;
height: 249px;
background-color: pink;
margin-top: 0;
}
.jd span {
position: absolute;
right: 15px;
top: -10px;
width: 0;
height: 0;
/* 为了照顾兼容性 */
line-height: 0;
font-size: 0;
border: 5px solid transparent;
border-bottom-color: pink;
}
</style>
</head>
<body>
<div class="jd">
<span></span>
</div>
<div class="box1">
</div>
</body>
</html>