css+svg实现操作成功失败动画图标效果代码
代码语言:html
所属分类:动画
代码描述:css+svg实现操作成功失败动画图标效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
.demo1 {
height: 300px;
display: flex;
justify-content: center;
align-items: center
}
.ui-success,.ui-error {
width: 100px;
height: 100px;
margin: 40px
}
.ui-success-circle {
stroke-dasharray: 260.75219025px,260.75219025px;
stroke-dashoffset: 260.75219025px;
transform: rotate(220deg);
transform-origin: center center;
stroke-linecap: round;
animation: ani-success-circle 1s ease-in both
}
.ui-success-path {
stroke-dasharray: 60px 64px;
stroke-dashoffset: 62px;
stroke-linecap: round;
animation: ani-success-path .4s 1s ease-in both
}
@keyframes ani-success-circle {
t.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0