Skip to content
New issue

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

hybrid开发android 4.3.0以下 滚动加载更多height bug #2

Open
nevergiveup-j opened this issue Dec 16, 2015 · 0 comments
Open

Comments

@nevergiveup-j
Copy link
Owner

hybrid开发android 4.3.0以下 滚动加载更多height bug
zepto

$(window).height() // 获取值:240

解决方案:

var viewHeight = $(window).height();
var isAndroid = /android/i.test( navigator.userAgent.toLowerCase() ) || /Linux/i.test( navigator.userAgent.toLowerCase() );

// android 4.3以下window高度问题
if(isAndroid) {
    var screenHeight = window.screen.height - 100;
    viewHeight = Math.max(viewHeight, screenHeight);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant