我最近切换到React Semantic-UI但是,我发现在语言UI的HTML版本中没有任何动画存在,例如下拉菜单和模态弹出窗口。
我尝试过使用过渡道具并将其包裹在一个模态中,但无济于事。
<Transition animation='scale' duration={500}>
<Modal
trigger={<Button>Show Modal</Button>}
header='Reminder!'
content='Call Benjamin regarding the reports.'
actions={[
'Snooze',
{ key: 'done', content: 'Done', positive: true },
]}
/>
</Transition>
有没有办法解决这个问题?
答案 0 :(得分:3)
在下面的讨论中提供了很多带有示例的解决方案。我尝试用<Modal>
包装<TransitionablePortal>
并起作用。一探究竟:
https://github.com/Semantic-Org/Semantic-UI-React/issues/2923