用css动画制作怦动的心
-
效果如下
-
代码如下
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.box1,.box2{
height: 81px;
width: 88px;
background-image: url(../images/xin.png);
}
.box1{
position: relative;
/* background-color: orange; */
}
.box2{
position: absolute;
/* background-color: gray; */
animation: xin 1s linear 0s infinite alternate;
}
@keyframes xin{
from{opacity: 1;
transform: scale(1);}
to{opacity: 0;
transform: scale(1.2);}
}
</style>
</head>
<body>
<div class="box1">
<div class="box2"></div>
</div>
</body>
</html>
- 思路分析
将两个盒子(父子关系)全部设置为绝对定位,背景图相同,使用@keyframes(关键帧)创建动画时,将盒子的透明度有1变0,并放大,就可以实现以上功能啦! - 所需材料
https://img-blog.csdnimg.cn/20210418224439274.png