分类分类
更新时间:2026-04-09 16:30:24作者: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>
相关
傲视神魔传手游策略游戏13.55 Mv1.0.02026-04-09
下载三国志王道天下策略游戏2.18Gv0.9.8.12026-04-09
下载风云三国手机版策略游戏213.99 M2026-04-09
下载星之海手机版角色扮演2.78Gv1.1.598772026-04-09
下载迪士尼梦幻王国经营养成79.34 Mv11.5.0h2026-04-09
下载TapAim动作射击97.92 Mv2.0.12026-04-09
下载肖邦大冒险九游版策略游戏133.64 Mv1.02026-04-09
下载放松时光与你共享Lo-Fi故事休闲益智951.66 Mv1.4.62026-04-09
下载羽毛球对决体育竞技175.66 Mv4.12026-04-09
下载假面骑士泽兹变身模拟器休闲益智51.91 Mv1.00.302026-04-09
下载餐车厨师烹饪游戏苹果版模拟游戏327.2 Mv8.682026-04-09
下载最终幻想7永恒危机ios版角色游戏1.5Gv3.6.02026-04-09
下载










