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
两个重要参数说明 ` touch; /* 当手指从触摸屏上移开,会保持一段时间的滚动 */
auto; /* 当手指从触摸屏上移开,滚动会立即停止 */ `
一. 卡顿:在使用下面这个样式做滚动的时候,IOS8的手机部分页面一直滚动失效(但是部分页面一样的样式确实可以滚的)。
二. webkit-overflow-scrolling点透: 一般存在于父级滚动,子级touchmove 的时候,带动了父级的滚动, 或者堂兄弟之间只要层级重叠就会穿透。 解决方案:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
两个重要参数说明
`
touch; /* 当手指从触摸屏上移开,会保持一段时间的滚动 */
auto; /* 当手指从触摸屏上移开,滚动会立即停止 */
`
一. 卡顿:在使用下面这个样式做滚动的时候,IOS8的手机部分页面一直滚动失效(但是部分页面一样的样式确实可以滚的)。
二. webkit-overflow-scrolling点透:
一般存在于父级滚动,子级touchmove 的时候,带动了父级的滚动,
或者堂兄弟之间只要层级重叠就会穿透。
解决方案:
The text was updated successfully, but these errors were encountered: