我正在尝试使用React,关键帧,CSS模块(和SASS)做一个简单的动画。问题是CSS模块哈希关键帧名称的方式与哈希本地类的方式相同。
JS代码
//...
export default () => {
const [active, setActive] = useState(false);
return(
<div className={active ? 'active' : 'inactive'}
onClick={() => setActive(!active)}
>content</div>
)
}
使用this源作为教程(未编译),试图使所有内容变为全局:
//default scope is local
@keyframes :global(animateIn) {
0% { background: black; }
100% { background: orange; }
}
@keyframes :global(animatOut) {
0% { background: orange; }
100% { background: black; }
}
:global {
.active {
background: orange;
animation-name: animateIn;
animation-duration: 1s;
}
.inactive {
background: black;
animation-name: animateOut;
animation-duration: 1s;
}
}
更改此操作也不起作用:
:global {
@keyframes animateIn {
0% { background: black; }
100% { background: orange; }
}
@keyframes animateOut {
0% { background: orange; }
100% { background: black; }
}
}
另一种尝试(无效):
@keyframes animateIn {
0% { background: black; }
100% { background: orange; }
}
@keyframes animateOut {
0% { background: orange; }
100% { background: black; }
}
:global {
.active {
background: orange;
:local {
animation-name: animateIn;
}
animation-duration: 1s;
}
.inactive {
background: black;
:local {
animation-name: animateOut;
}
animation-duration: 1s;
}
}
如何在CSS模块全局范围内使用关键帧?可以在全局范围类中使用局部范围关键帧吗?
答案 0 :(得分:0)
您的第三次尝试几乎可以,只需在&
之前添加:local
,并确保它们之间有空格。这样,您可以在选择器内切换到本地范围。
:global {
.selector {
& :local {
animation: yourAnimation 1s ease;
}
}
}
@keyframes yourAnimation {
0% {
opacity: 0;
}
to {
opacity: 1;
}
}
哪个编译为
.selector {
animation: [hashOfYourAnimation] 1s ease;
}
答案 1 :(得分:0)
原始答案很好用。这在没有SASS的情况下有效:
:global {
.selector {
// global selector stuff ...
}
.selector :local {
animation: yourAnimation 1s ease;
}
}
@keyframes yourAnimation {
0% {
opacity: 0;
}
to {
opacity: 1;
}
}