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
写某些弹窗组件,会出现这样的问题,安卓上没有问题,iOS就会出现滚动穿透的问题。
比较简单的解决方式,参考vant的popup组件写法,可以在弹窗显示的时候在body上加样式。
popup
overflow: hidden !important;
弹窗关闭的时候,去除这个样式,就可以了。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
背景
写某些弹窗组件,会出现这样的问题,安卓上没有问题,iOS就会出现滚动穿透的问题。
思路
比较简单的解决方式,参考vant的
popup
组件写法,可以在弹窗显示的时候在body上加样式。弹窗关闭的时候,去除这个样式,就可以了。
The text was updated successfully, but these errors were encountered: