gpt4 book ai didi

html - 是否可以在 CSS 中处理 mouseout on::after 伪类?

转载 作者:行者123 更新时间:2023-12-04 03:52:05 25 4
gpt4 key购买 nike

<分区>

.header-section {
width: calc(100% / 4);
padding: 10px 15px;
user-select: none;
font-family: 'Nourd', sans;
font-size: 1.2em;
text-align: center;
cursor: pointer;
border-radius: 15px;
position: relative;
}

.header-section::after {
content: "";
position: absolute;
bottom: 8%;
left: 25%;
width: 0%;
height: 4px;
border-radius: 6px;
background-image: linear-gradient(135deg, rgb(225, 60, 60), rgb(235, 126, 181));
animation-duration: 500ms;
animation-fill-mode: both;
animation-name: hss-anim-out;
}

.header-section:hover::after {
animation-name: hss-anim-over;
}

@keyframes hss-anim-over {
from {
width: 0%;
}
to {
width: 50%;
}
}

@keyframes hss-anim-out {
from {
left: 25%;
width: 50%;
}
to {
left: 75%;
width: 0%;
}
}
<div class="header-section header-section-selected">importer</div>
<div class="header-section">mes fichiers</div>

这是我的代码,用来阐明我的问题。它做我想要的,除了它在页面加载时运行动画“hss-anim-out”。我搜索了如何覆盖它,但没有找到真正有效的东西。考虑到动画不可能使用 JavaScript,因为它在::after 伪元素上,有没有人有想法这样做?提前致谢

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