svg女孩荡秋千动画效果
代码语言:html
所属分类:动画
代码描述:svg女孩荡秋千动画效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body{
height: 100%;
margin: 0;
padding: 0;
background-color: #fff;
}
svg{
width: 500px ;
align-self: center;
justify-self: center;
margin-left: 30%;
margin-top: 7%;
}
svg #mujer{
animation-duration:1.2s;
animation-name: meser;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes meser{
from{
transform: translateX(0) translateY(0);
}
to{
transform: translateX(12px) translateY(6px);
}
}
svg #columpio{
animation-duration: 1.2s;
animation-name: cuerdas;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes cuerdas{
from{
transform: translateX(0px);
}
to{
transform: translateX(2px);
}
}
svg #hojas-arbol{
animation-duration: 3s;
animation-name: hojas;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes hojas{
from{
opacity: 0;
}
to{
opacity: 1;
}
}
.st0{fill:#3F3D56;}
.st1{opacity:0.1;enable-background:new ;}
.st2{fill:#FFB9B9;}
.st3{fill:#D0CDE1;}
.st4{fill:#2F2E41;}
.st5{fill:#0C963A;}
.st6{fill:#F2F2F2;}
</style>
</head>
<body translate="no"&g.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0