I would like to have the control over the transitions in either the material or ios theme, I understand they are designed to look like native, but some (cool) apps might need to have more control over the page transitions. So page transitions might be pulled out of the two themes and be available as a separate feature?
So I think it might be a good idea to:
@nolimits4web what do you think?
There is no in plans to add custom page transition by default as it will lead to misuse with worse native-like look & feel. But they are pure CSS based, so people who know and sure they need it, can change it. It is just:
.page-from-right-to-center {
animation: custom-animation1 ...
}
.page-from-center-to-right {
animation: custom-animation2 ...
}
.page-from-center-to-left {
animation: custom-animation3 ...
}
.page-from-left-to-center {
animation: custom-animation4 ...
}
Fair enough :)
I have a special case where I would like to have a fade transition. I have my index page as a kind of loading splash screen with just the app logo and a progress bar. When everything's done on there and it's time to transition to the page I would like it to be a fade rather than a slide.
How could I do this?
Most helpful comment
There is no in plans to add custom page transition by default as it will lead to misuse with worse native-like look & feel. But they are pure CSS based, so people who know and sure they need it, can change it. It is just: