Manual page's animation type
See original GitHub issueI’m using F7 in a Cordova app with md
theme, but I would like to use the iOS transitions on iOS device instead the md ones.
In v1 I made an override of page-from-right-to-center
, page-from-center-to-right
, page-from-center-to-left and
page-from-left-to-center` CSS classes, but I have some problems to make the same think in v2 (and v3 I suppose).
There is a way to manually set the transition type?
Thank you
Issue Analytics
- State:
- Created 5 years ago
- Comments:5
Top Results From Across the Web
The 5 Types of Animation - A Beginner's Guide
This guide breaks down the five different types of animation, and what you'll need to start animating with each animation type (software, schools...
Read more >Animation Types - Keyshot Manual
Part Animations: Part animations affect your model's position, orientation, and visibility in the scene. This can be either a Transform animation or a...
Read more >Animation tab - Unity - Manual
Animation Clips are the smallest building blocks of animation in Unity. They represent an isolated piece of motion, such as RunLeft, Jump, ...
Read more >Animate, share, or save drawings in Pages on Mac
If you later open the document in Pages for Mac, you can animate the drawing, share it, or save it to Photos as...
Read more >animation - CSS: Cascading Style Sheets - MDN Web Docs
The animation shorthand CSS property applies an animation between styles. It is a shorthand for animation-name, animation-duration, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I had the same problem. To use iOS like transitions I overrode CSS like this:
Maybe this can be of any help to you.
Done! I copied all other “transitioning” animations and now it works correctly. The “flash” was related to the
opacity:0
on.md .page-next
; I addedopacity: 1
in.device-ios.md .page-next
and now it’s all ok. The following is the included CSS file; I hope this could help someone.Thanks.