gpt4 book ai didi

css - 反转CSS关键帧动画

转载 作者:行者123 更新时间:2023-11-28 10:24:44 25 4
gpt4 key购买 nike

我使用 svg 路径的关键帧编写了一个 css 动画

path {
animation: anim 1s linear;
animation-fill-mode: forwards;
}

@keyframes anim {
50% {
d: path('M20 20 L 20 20');
}
100% {
d: path('M10 10 L 30 30');
}
}
<path class="top" d="M10 10 L 30 10" stroke-width="2" stroke="black" fill="transparent" />

Source

如果单击 svg,您可以看到正在运行的动画。现在,如果您再次单击,我希望它以动画方式恢复到原始状态。我尝试过添加

transition: all 1s ease-out;

animation-direction: alternate;

但是仍然没有动画回到初始状态。

所以问题是,我怎样才能动画回来?

最佳答案

通过过渡,您可以轻松地做到这一点,但动画会略有不同:

const svg = document.querySelector('svg');

svg.addEventListener('click', () => {
svg.classList.toggle('close');
});
svg {
border: 1px solid blue;
}

svg path {
transition: 0.2s all linear;
}

svg.close path.top {
d: path('M10 10 L 30 30');
}

svg.close path.middle {
d: path('M20 20 L 20 20');
}

svg.close path.bottom {
d: path('M10 30 L 30 10');
}
<svg width="190" height="160" xmlns="http://www.w3.org/2000/svg">

<path class="top" d="M10 10 L 30 10" stroke-width="2" stroke="black" fill="transparent"/>
<path class="middle" d="M10 20 L 30 20" stroke-width="2" stroke="black" fill="transparent"/>
<path class="bottom" d="M10 30 L 30 30" stroke-width="2" stroke="black" fill="transparent"/>
</svg>

另一个想法是依靠animationiteration,其中的技巧是运行无限动画,并在每次迭代时停止它。

const svg = document.querySelector('svg');

const path = document.querySelector('svg path');

svg.addEventListener('click', () => {
svg.classList.toggle('close');
});


path.addEventListener('animationiteration', () =>{
svg.classList.toggle('close');
});
svg {
border: 1px solid blue;
}


path.top {
animation: close-top 0.2s linear infinite alternate;
}

path.middle {
animation: close-middle 0.2s linear infinite alternate;
}

path.bottom {
animation: close-bottom 0.2s linear infinite alternate;
}

svg:not(.close) path {
animation-play-state: paused;
}

svg.close path {
animation-play-state: running;
}

@keyframes close-top {
50% {
d: path('M20 20 L 20 20');
}
100% {
d: path('M10 10 L 30 30');
}
}

@keyframes close-middle {
to {
d: path('M20 20 L 20 20');
}
}

@keyframes close-bottom {
50% {
d: path('M20 20 L 20 20');
}
100% {
d: path('M10 30 L 30 10');
}
}
<svg width="190" height="160" xmlns="http://www.w3.org/2000/svg">

<path class="top" d="M10 10 L 30 10" stroke-width="2" stroke="black" fill="transparent"/>
<path class="middle" d="M10 20 L 30 20" stroke-width="2" stroke="black" fill="transparent"/>
<path class="bottom" d="M10 30 L 30 30" stroke-width="2" stroke="black" fill="transparent"/>
</svg>

关于css - 反转CSS关键帧动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56075337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com