We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
有如下几个问题 1、安卓手机上在微信浏览器动画不流畅,滑动的时候出现大量空白,衔接不上,把动画过程设长一点的时候发现屏幕会闪烁,在meizu pro5和华为mate7上有这种现象, 2、安卓机上过场动画pagein没有动画效果,pagein会有,这个可以通过设置动画延时解决, .slide.out, .slide.in { -webkit-animation-timing-function: ease-out; -webkit-animation-duration: 300ms; animation-timing-function: ease-out; animation-duration: 300ms; -webkit-animation-delay:19ms; animation-delay:19ms; } 3、另外在ios下,ajax请求时过场动画中间有空隙,这个可以通过在ajax请求完成时设置延时解决 setTimeout(function(){ Mobilebone.createPage(response, aOrFormOrObj, params); }, 15); 以上是个人遇到的问题和一些经验,第一个问题还没有好的解决办法,希望有解决过的童鞋分享下经验。
.slide.out, .slide.in { -webkit-animation-timing-function: ease-out; -webkit-animation-duration: 300ms; animation-timing-function: ease-out; animation-duration: 300ms; -webkit-animation-delay:19ms; animation-delay:19ms; }
setTimeout(function(){ Mobilebone.createPage(response, aOrFormOrObj, params); }, 15);
The text was updated successfully, but these errors were encountered:
欢迎pull request 共同参与建设。
Sorry, something went wrong.
No branches or pull requests
有如下几个问题
1、安卓手机上在微信浏览器动画不流畅,滑动的时候出现大量空白,衔接不上,把动画过程设长一点的时候发现屏幕会闪烁,在meizu pro5和华为mate7上有这种现象,
2、安卓机上过场动画pagein没有动画效果,pagein会有,这个可以通过设置动画延时解决,
.slide.out, .slide.in { -webkit-animation-timing-function: ease-out; -webkit-animation-duration: 300ms; animation-timing-function: ease-out; animation-duration: 300ms; -webkit-animation-delay:19ms; animation-delay:19ms; }
3、另外在ios下,ajax请求时过场动画中间有空隙,这个可以通过在ajax请求完成时设置延时解决
setTimeout(function(){ Mobilebone.createPage(response, aOrFormOrObj, params); }, 15);
以上是个人遇到的问题和一些经验,第一个问题还没有好的解决办法,希望有解决过的童鞋分享下经验。
The text was updated successfully, but these errors were encountered: