animate in quasar 1.0.0 so fast speed
-
how to config time all animate?
-
The duration of animations are configurable at component level only.
Scott
-
The transition/animation classes are located in .syl files:
https://github.com/quasarframework/quasar/blob/master/ui/src/css/core/transitions.styl
https://github.com/quasarframework/quasar/blob/master/ui/src/css/core/animations.stylYou can find names of classes you want to change and override them by making your own .styl file and putting in for example:
.q-transition
&–slide-right,
&–slide-left,
&–slide-up,
&–slide-down
&-enter-active, &-leave-active
transition-duration 2.3sThe above example will change TabPanels slide speed from 0.3s to 2.3s (for example) globally if the .styl gets imported into entry component. You can do this override this locally in scoped components by putting in <style lang=‘stylus’ scoped> […] </style>