分类分类
更新时间:2026-02-18 20:43:57作者:yezheng
本文将介绍css3实现图形的动画效果的方法,有需要的朋友来看下吧
1. [CSS]代码如下:
css代码:
.image{
width: 100px;
height: 100px;
/* background-color: forestgreen;*/
position: relative;
-webkit-animation: anim 5s;
-moz-animation: anim 5s;
-ms-animation: anim 5s;
-o-animation: anim 5s;
animation: anim 5s infinite alternate;
}
@-webkit-keyframes anim {
0%{
background-color: aliceblue;
left: 0px;
top: 0px;
}
25%{
background-color: aqua;
left: 200px;
top: 0px;
}
50%{
background-color: blue;
left: 200px;
top: 200px;
}
75%{
background-color: blueviolet;
left: 0px;
top: 200px;
}
100%{
background-color: chartreuse;
left: 0px;
top: 0px;
}
}
@-moz-keyframes anim{
0%{
background-color: aliceblue;
left: 0px;
top: 0px;
}
25%{
background-color: aqua;
left: 200px;
top: 0px;
}
50%{
background-color: blue;
left: 200px;
top: 200px;
}
75%{
background-color: blueviolet;
left: 0px;
top: 200px;
}
100%{
background-color: chartreuse;
left: 0px;
top: 0px;
}
}
@-ms-keyframes anim {
0%{
background-color: aliceblue;
left: 0px;
top: 0px;
}
25%{
background-color: aqua;
left: 200px;
top: 0px;
}
50%{
background-color: blue;
left: 200px;
top: 200px;
}
75%{
background-color: blueviolet;
left: 0px;
top: 200px;
}
100%{
background-color: chartreuse;
left: 0px;
top: 0px;
}
}
@-o-keyframes anim {
0%{
background-color: aliceblue;
left: 0px;
top: 0px;
}
25%{
background-color: aqua;
left: 200px;
top: 0px;
}
50%{
background-color: blue;
left: 200px;
top: 200px;
}
75%{
background-color: blueviolet;
left: 0px;
top: 200px;
}
100%{
background-color: chartreuse;
left: 0px;
top: 0px;
}
}
HTML;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>动画</title>
<link rel="stylesheet" type="text/css" href="css/style02.css">
</head>
<body>
<div class="contaner">
<div class="image">
</div>
</div>
</body>
</html>
相关
归墟战纪策略游戏262.92 MBv3.95802026-02-14
下载爆裂老奶策略游戏209.43 MBv1.0.112026-02-14
下载超能下蛋鸭策略游戏395.4 MBv1.2.82026-02-14
下载你好盒子实用工具12.1 MBv2.2.852026-02-14
下载我在峡谷当牛马休闲益智87.95 MBv0.7.12026-02-14
下载抽卡监狱2策略游戏190.75 MBv1.4.92026-02-14
下载Campus社交通讯94.36 MBv1.19.02026-02-14
下载冒险传奇角色扮演141.73 Mv9991.12026-02-14
下载心动次元app社交通讯43.96 Mv1.0.1.32026-02-14
下载致亲爱的我角色扮演1.63Gv1.02026-02-14
下载狼伴侣游戏手机版冒险游戏155.6 Mv1.02026-02-14
下载Loclike社交通讯169.08 Mv2.2.112026-02-14
下载










