Animations of modal and dropdown in React Semantic UI
up vote
7
down vote
favorite
I recently made the switch over to React Semantic-UI However, I found that none of the animations in the HTML version of Semantic-UI are present such as with the dropdown menu and modal popup.
I have tried using the transition prop and wrapping it around a modal, but to no avail.
<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>
Is there any way do fix this?
reactjs semantic-ui-react
add a comment |
up vote
7
down vote
favorite
I recently made the switch over to React Semantic-UI However, I found that none of the animations in the HTML version of Semantic-UI are present such as with the dropdown menu and modal popup.
I have tried using the transition prop and wrapping it around a modal, but to no avail.
<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>
Is there any way do fix this?
reactjs semantic-ui-react
1
Transition component is done, however transitions for all components are still in work. Follow, github.com/Semantic-Org/Semantic-UI-React/pull/2001
– Alexander Fedyashov
Sep 18 '17 at 7:20
@AlexanderFedyashov So is there no way to implement the transitions at the moment, even with the transition component?
– DarkTakua
Sep 18 '17 at 10:35
In fact, yes. All components are too complicated to do this, except Accordion.
– Alexander Fedyashov
Sep 18 '17 at 10:53
add a comment |
up vote
7
down vote
favorite
up vote
7
down vote
favorite
I recently made the switch over to React Semantic-UI However, I found that none of the animations in the HTML version of Semantic-UI are present such as with the dropdown menu and modal popup.
I have tried using the transition prop and wrapping it around a modal, but to no avail.
<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>
Is there any way do fix this?
reactjs semantic-ui-react
I recently made the switch over to React Semantic-UI However, I found that none of the animations in the HTML version of Semantic-UI are present such as with the dropdown menu and modal popup.
I have tried using the transition prop and wrapping it around a modal, but to no avail.
<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>
Is there any way do fix this?
reactjs semantic-ui-react
reactjs semantic-ui-react
asked Sep 15 '17 at 7:56
DarkTakua
130312
130312
1
Transition component is done, however transitions for all components are still in work. Follow, github.com/Semantic-Org/Semantic-UI-React/pull/2001
– Alexander Fedyashov
Sep 18 '17 at 7:20
@AlexanderFedyashov So is there no way to implement the transitions at the moment, even with the transition component?
– DarkTakua
Sep 18 '17 at 10:35
In fact, yes. All components are too complicated to do this, except Accordion.
– Alexander Fedyashov
Sep 18 '17 at 10:53
add a comment |
1
Transition component is done, however transitions for all components are still in work. Follow, github.com/Semantic-Org/Semantic-UI-React/pull/2001
– Alexander Fedyashov
Sep 18 '17 at 7:20
@AlexanderFedyashov So is there no way to implement the transitions at the moment, even with the transition component?
– DarkTakua
Sep 18 '17 at 10:35
In fact, yes. All components are too complicated to do this, except Accordion.
– Alexander Fedyashov
Sep 18 '17 at 10:53
1
1
Transition component is done, however transitions for all components are still in work. Follow, github.com/Semantic-Org/Semantic-UI-React/pull/2001
– Alexander Fedyashov
Sep 18 '17 at 7:20
Transition component is done, however transitions for all components are still in work. Follow, github.com/Semantic-Org/Semantic-UI-React/pull/2001
– Alexander Fedyashov
Sep 18 '17 at 7:20
@AlexanderFedyashov So is there no way to implement the transitions at the moment, even with the transition component?
– DarkTakua
Sep 18 '17 at 10:35
@AlexanderFedyashov So is there no way to implement the transitions at the moment, even with the transition component?
– DarkTakua
Sep 18 '17 at 10:35
In fact, yes. All components are too complicated to do this, except Accordion.
– Alexander Fedyashov
Sep 18 '17 at 10:53
In fact, yes. All components are too complicated to do this, except Accordion.
– Alexander Fedyashov
Sep 18 '17 at 10:53
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
There's quite a few solutions with examples given in the following discussion. I've tried wrapping the <Modal>
with <TransitionablePortal>
and it works. Check it out:
https://github.com/Semantic-Org/Semantic-UI-React/issues/2923
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
There's quite a few solutions with examples given in the following discussion. I've tried wrapping the <Modal>
with <TransitionablePortal>
and it works. Check it out:
https://github.com/Semantic-Org/Semantic-UI-React/issues/2923
add a comment |
up vote
1
down vote
There's quite a few solutions with examples given in the following discussion. I've tried wrapping the <Modal>
with <TransitionablePortal>
and it works. Check it out:
https://github.com/Semantic-Org/Semantic-UI-React/issues/2923
add a comment |
up vote
1
down vote
up vote
1
down vote
There's quite a few solutions with examples given in the following discussion. I've tried wrapping the <Modal>
with <TransitionablePortal>
and it works. Check it out:
https://github.com/Semantic-Org/Semantic-UI-React/issues/2923
There's quite a few solutions with examples given in the following discussion. I've tried wrapping the <Modal>
with <TransitionablePortal>
and it works. Check it out:
https://github.com/Semantic-Org/Semantic-UI-React/issues/2923
answered Nov 8 at 4:50
Saravana
114
114
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f46234548%2fanimations-of-modal-and-dropdown-in-react-semantic-ui%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Transition component is done, however transitions for all components are still in work. Follow, github.com/Semantic-Org/Semantic-UI-React/pull/2001
– Alexander Fedyashov
Sep 18 '17 at 7:20
@AlexanderFedyashov So is there no way to implement the transitions at the moment, even with the transition component?
– DarkTakua
Sep 18 '17 at 10:35
In fact, yes. All components are too complicated to do this, except Accordion.
– Alexander Fedyashov
Sep 18 '17 at 10:53