分类分类
更新时间:2026-03-29 00:59:28作者: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>
相关
王道三国策略游戏380.18 MBv0.0.12026-03-28
下载刮个爽手机版休闲益智186.96 MBv1.0.282026-03-28
下载龙符天祭策略游戏756.03 Mv22026-03-28
下载入魂一番赏app网上购物106.66 Mv4.3.52026-03-28
下载童话师经营养成504.02 Mv1.1.52026-03-28
下载Bebo Cam app图像拍照264.51 Mv2.3.02026-03-28
下载纯三国官方正版策略游戏167.24 Mv0.0.12026-03-28
下载Poka Cam app图像拍照74.7 Mv1.8.02026-03-28
下载COLMO app趣味娱乐199.15 Mv2.3.5.22026-03-28
下载愤怒的小鸟变形金刚苹果版休闲游戏439.4 Mv2.39.02026-03-28
下载这也能切苹果版休闲游戏479.6 Mv21342026-03-28
下载口袋吉伊卡哇苹果手机版模拟游戏920.4 Mv2.0.02026-03-28
下载










