gpt4 book ai didi

javascript - 突出显示背景颜色淡入/淡出的区域

转载 作者:行者123 更新时间:2023-11-28 18:15:08 24 4
gpt4 key购买 nike

您好,我想强调一下.small。无法添加 jQuery UI,例如无法使用.animate

HTML

<span class="small">10 left</span>

jQuery

$(".small").css("background-color","orange");

问题:如何在此处添加背景颜色橙色并使其 .fadeOut() ?下面这个不行吗?只想淡出背景颜色,没有别的。

$(".small").css("background-color","orange").fadeOut();

最佳答案

你可以使用CSS动画来做到这一点

请参阅下面的代码片段

span {
background-color:orange;
animation-name:bckanim;
animation-fill-mode:forwards;
animation-duration:3s;
animation-delay:0s;
}
@keyframes bckanim {
0% {background-color:orange;}
100% { background-color:transparent;}
}
<span class="small">10 left</span>

关于javascript - 突出显示背景颜色淡入/淡出的区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40862149/

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