html语言让动画停止,如何停止svg动画?

我有一个SVG动画,我想知道如何在动画序列完成一次后停止并离开SVG。这样的标志停留在页面上,直到下一个页面刷新等如何停止svg动画?

HTML:

CSS:

*, *:before, *:after {

box-sizing: border-box;

margin: 0;

padding: 0;

}

.pin {

position: absolute;

left: 50%;

top: 50%;

margin-left: -60px;

margin-top: -60px;

width: 120px;

height: 120px;

overflow: visible;

}

.pin__group {

-webkit-transform-origin: 30px 30px;

transform-origin: 30px 30px;

-webkit-animation: group-anim 8s 1s infinite;

animation: group-anim 8s 1s infinite;

}

.pin__grayGroup {

-webkit-animation: gray-anim 8s 1s infinite;

animation: gray-anim 8s 1s infinite;

}

.pin__square {

stroke: #B8B8B8;

stroke-dasharray: 240, 240;

stroke-dashoffset: 240;

-webkit-animation: square-anim 8s 1s infinite;

animation: square-anim 8s 1s infinite;

}

.pin__line {

stroke: #B8B8B8;

stroke-dasharray: 60, 60;

stroke-dashoffset: 60;

}

.pin__line-1 {

-webkit-animation: line-anim 8s 0.6s infinite;

animation: line-anim 8s 0.6s infinite;

}

.pin__line-2 {

-webkit-animation: line-anim 8s 0.8s infinite;

animation: line-anim 8s 0.8s infinite;

}

.pin__line-3 {

-webkit-animation: line-anim 8s 1s infinite;

animation: line-anim 8s 1s infinite;

}

.pin__circleBig {

stroke: #B8B8B8;

stroke-dasharray: 188.522, 188.522;

stroke-dashoffset: 188.522;

-webkit-animation: bigCircle-anim 8s 1s infinite;

animation: bigCircle-anim 8s 1s infinite;

}

.pin__circleSmall {

stroke: #B8B8B8;

stroke-dasharray: 94.261, 94.261;

stroke-dashoffset: 94.261;

-webkit-animation: smallCircle-anim 8s 1s infinite;

animation: smallCircle-anim 8s 1s infinite;

}

.pin__outer {

stroke: #00CD73;

fill: transparent;

stroke-dasharray: 201.391, 201.391;

stroke-dashoffset: 201.391;

-webkit-animation: outer-anim 8s 1s infinite;

animation: outer-anim 8s 1s infinite;

}

.pin__inner {

stroke: #00CD73;

fill: transparent;

stroke-dasharray: 94.261, 94.261;

stroke-dashoffset: 94.261;

-webkit-animation: inner-anim 8s 1s infinite;

animation: inner-anim 8s 1s infinite;

}

@-webkit-keyframes square-anim {

15% {

stroke-dashoffset: 0;

}

100% {

stroke-dashoffset: 0;

}

}

@keyframes square-anim {

15% {

stroke-dashoffset: 0;

}

100% {

stroke-dashoffset: 0;

}

}

@-webkit-keyframes line-anim {

23% {

stroke-dashoffset: 60;

}

30% {

stroke-dashoffset: 0;

}

100% {

stroke-dashoffset: 0;

}

}

@keyframes line-anim {

23% {

stroke-dashoffset: 60;

}

30% {

stroke-dashoffset: 0;

}

100% {

stroke-dashoffset: 0;

}

}

@-webkit-keyframes bigCircle-anim {

30% {

stroke-dashoffset: 188.522;

}

43% {

stroke-dashoffset: 0;

}

100% {

stroke-dashoffset: 0;

}

}

@keyframes bigCircle-anim {

30% {

stroke-dashoffset: 188.522;

}

43% {

stroke-dashoffset: 0;

}

100% {

stroke-dashoffset: 0;

}

}

@-webkit-keyframes smallCircle-anim {

43% {

stroke-dashoffset: 94.261;

}

53% {

stroke-dashoffset: 0;

}

100% {

stroke-dashoffset: 0;

}

}

@keyframes smallCircle-anim {

43% {

stroke-dashoffset: 94.261;

}

53% {

stroke-dashoffset: 0;

}

100% {

stroke-dashoffset: 0;

}

}

@-webkit-keyframes group-anim {

53% {

-webkit-transform: rotate(0);

transform: rotate(0);

}

61% {

-webkit-transform: rotate(45deg);

transform: rotate(45deg);

}

94% {

-webkit-transform: rotate(45deg);

transform: rotate(45deg);

opacity: 1;

}

100% {

-webkit-transform: rotate(45deg);

transform: rotate(45deg);

opacity: 0;

}

}

@keyframes group-anim {

53% {

-webkit-transform: rotate(0);

transform: rotate(0);

}

61% {

-webkit-transform: rotate(45deg);

transform: rotate(45deg);

}

94% {

-webkit-transform: rotate(45deg);

transform: rotate(45deg);

opacity: 1;

}

100% {

-webkit-transform: rotate(45deg);

transform: rotate(45deg);

opacity: 0;

}

}

@-webkit-keyframes outer-anim {

61% {

stroke-dashoffset: 201.391;

}

71% {

stroke-dashoffset: 0;

}

79% {

stroke-dashoffset: 0;

fill: transparent;

}

94% {

stroke-dashoffset: 0;

fill: #00CD73;

}

100% {

stroke-dashoffset: 0;

fill: #00CD73;

}

}

@keyframes outer-anim {

61% {

stroke-dashoffset: 201.391;

}

71% {

stroke-dashoffset: 0;

}

79% {

stroke-dashoffset: 0;

fill: transparent;

}

94% {

stroke-dashoffset: 0;

fill: #00CD73;

}

100% {

stroke-dashoffset: 0;

fill: #00CD73;

}

}

@-webkit-keyframes inner-anim {

71% {

stroke-dashoffset: 94.261;

}

79% {

stroke-dashoffset: 0;

fill: transparent;

}

94% {

stroke-dashoffset: 0;

fill: white;

}

100% {

stroke-dashoffset: 0;

fill: white;

}

}

@keyframes inner-anim {

71% {

stroke-dashoffset: 94.261;

}

79% {

stroke-dashoffset: 0;

fill: transparent;

}

94% {

stroke-dashoffset: 0;

fill: white;

}

100% {

stroke-dashoffset: 0;

fill: white;

}

}

@-webkit-keyframes gray-anim {

53% {

opacity: 1;

}

79% {

opacity: 0.2;

}

94% {

opacity: 0;

}

100% {

opacity: 0;

}

}

@keyframes gray-anim {

53% {

opacity: 1;

}

79% {

opacity: 0.2;

}

94% {

opacity: 0;

}

100% {

opacity: 0;

}

}

我知道我可以删除“无限”属性来运行一次,但问题是,如何在停止之后立即停止它?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值