我正在用 MUI 构建一个 GatsbyJS 站点。使用withStyles
HOC,是否可以制作闪烁动画?我尝试在以下位置提供动画styles
:
const styles = theme => ({
'@keyframes blinker': {
from: {opacity: 1},
to: {opacity: 0}
},
headerGT: {
color: 'white',
animation: ['blinker', '1s', 'linear', 'infinite'],
'-webkit-animation': ['blinker', '1s', 'linear', 'infinite'],
'-moz-animation': ['blinker', '1s', 'linear', 'infinite'],
}
})
我可以看到类和关键帧在headerGT
构建 DOM 时被识别并具有动画方法,但动画不会触发。有任何想法吗?