Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fade transition of tabs component is too slow #1806

Closed
rinick opened this issue May 8, 2018 · 1 comment · Fixed by #1812
Closed

fade transition of tabs component is too slow #1806

rinick opened this issue May 8, 2018 · 1 comment · Fixed by #1812

Comments

@rinick
Copy link
Contributor

rinick commented May 8, 2018

compare the animation speed between bootstrap and bootstrap-vue:
https://bootstrap-vue.js.org/docs/components/tabs/
https://getbootstrap.com/docs/4.1/components/navs/#nav-tab

both using transition: opacity .15s linear; but bootstrap-vue takes about 0.3 seconds instead of 0.15.

seems it wait for fade out finish and then start fade in, the blank time makes user feel that content is not ready. I tried changing the time to 0.07s fadeout + 0.07s fadein, total time is 0.14s, but the blank time in the middle still feels weird.

if it could do a crossfade, and start fade in fade out transition at same time, it would look much better

@rinick
Copy link
Contributor Author

rinick commented May 9, 2018

I just realize it's impossible to show 2 tabs overlap with 2 fade effect happening at same time without big layout change.
maybe a easier solution is do it exactly like bootstrap: hide the first tab instantly with no effect and only use fade on the show effect

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant