【发布时间】:2020-08-22 21:54:34
【问题描述】:
我在 React 旁边使用 styled-components 并且我有这样的组件:
import styled, { keyframes } from 'styled-components'
import { ReactComponent as SpinnerIcon } from './spinner.svg'
const rotate = keyframes`
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
`
const Spinner = styled(SpinnerIcon)`
margin-top: 50px;
animation: ${rotate} 2s ease-in infinite;
`
export default Spinner
当我像这样使用这个组件时:
<Spinner width='50px' height='50px' />
我看到了这个组件,但它没有动画。怎么了?
【问题讨论】:
标签: css reactjs styled-components