前端HTML animation关键帧动画的使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>倒影</title>
<style type="text/css">
/*倒影只是一个影像 不占据空间*/
/*1.倒影的位置
left 在实物的左侧 right 在右侧
above 在标签上方 below 在标签下方
2.距离实物的距离 单位px*/
.bottom{
/*盒子不写宽时默认与父级同宽高度由内容撑起*/
width: 600px;
/*普通写法*/
/*-webkit-box-reflect: below 10px;*/
/*越来越越透明的写法 就是渐变倒影*/
-webkit-box-reflect:below -300px
-webkit-linear-gradient(/*left*/top,transparent,red);
}
.bottom img{
width: 600px;
}
</style>
</head>
<body>
<span>下倒影</span>
<div class="bottom">
<img src="img/heart.png"/>
</div>
</body>
</html>

运行结果:


前端HTML animation关键帧动画的使用
http://ultracode.cn/2020/10/24/HTML/前端HTML animation关键帧动画的使用/
作者
Win
发布于
2020年10月24日
许可协议