【发布时间】:2021-07-09 23:16:38
【问题描述】:
有没有办法用jQuery改变@keyframes (CSS)的值
为了更清楚一点,我在我的 css 文件中有这个:
@keyframes bg {
50% { background: #3b99fcff; }
}
.pie::before {
content: '';
position: absolute;
top: 0; left: 50%;
width: 50%; height: 100%;
border-radius: 0 100% 100% 0 / 50%;
background-color: inherit;
transform-origin: left;
animation: spin 50s linear infinite,
bg 100s step-end infinite;
animation-play-state: paused;
animation-delay: inherit;
}
我想用 Jquery 改变“背景”
【问题讨论】:
标签: javascript jquery html css