如何增强 Android 设备中的 Framework7 转换,使其更加流畅和干净?
How to enhance Framework7 transitions in Android devices to be more smooth and clean?
Framework7 提供了很好的组件,比如日期选择器。
但是在导航或弹出菜单时,Android 上的转换并不平滑,尤其是在使用 Cordova 时。
iPhone 运行方式与本机相同。
也许有一个修复程序,或者安装一些高效的 cordova 插件来解决它以更好地工作?
谢谢。
好吧,可以通过定位 .page-from-right-to-center、.page-from-center-to-right 这样的类来在 framework7 中使用自定义动画进行页面转换
.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 ...
}
这样就可以为页面转换创建自己的自定义动画了..
Framework7 提供了很好的组件,比如日期选择器。 但是在导航或弹出菜单时,Android 上的转换并不平滑,尤其是在使用 Cordova 时。 iPhone 运行方式与本机相同。
也许有一个修复程序,或者安装一些高效的 cordova 插件来解决它以更好地工作?
谢谢。
好吧,可以通过定位 .page-from-right-to-center、.page-from-center-to-right 这样的类来在 framework7 中使用自定义动画进行页面转换
.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 ...
}
这样就可以为页面转换创建自己的自定义动画了..