<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>动画</title>
<style type="text/css">
.box{
width: 800px;
height: 500px;
background-color: azure;
position: relative;
}
.box:hover{
}
@keyframes moving{
0%{
transform: scaleY(1);
}
50%{
transform: scaleY(0.5);
}
100%{
transform: scaleY(1);
}
}
.box1{
width: 50px;
height: 150px;
background-color: red;
animation: moving 1s ease 1s infinite;
position: absolute;
left: 100px;
top: 200px;
border-radius:20px;
}
.box2{
width: 50px;
height: 150px;
background-color: lawngreen;
animation: moving 1s ease 1.1s infinite;
position: absolute;
left: 200px;
top: 180px;
border-radius: 20px;
}
.box3{
width: 50px;
height: 150px;
background-color: deepskyblue;
animation: moving 1s ease 1.2s infinite;
position: absolute;
left: 300px;
top: 175px;
border-radius: 20px;
}
.box4{
width: 50px;
height: 150px;
background-color:hotpink;
animation: moving 1s ease 1.3s infinite;
position: absolute;
left: 400px;
top: 160px;
border-radius: 20px;
}
.box5{
width: 50px;
height: 150px;
background-color:gold;
animation: moving 1s ease 1.4s infinite;
position: absolute;
left: 500px;
top: 150px;
border-radius: 20px;
}
</style>
</head>
<body>
<div class="box"></div>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
<div class="box5"></div>
</body>
</html>
动画
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- DrawableAnimation 代表的动画默认是不播放的,必须在程序中启动动画播放才可以。播放 start...
- 使用最经典的一张图来介绍一下动画抽象类CAAnimation.同NSOperation一样,都是抽象类,并不具备封...
- aos.js是一款非常好的监听页面滚动动条而加载出动态效果的插件 wow.js和aos.js作用一样,但是wow....
- 1. 三种动画的区别 :http://www.cnblogs.com/ldq2016/p/5407061.html...