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
InfiniteLoading希望能增加隐藏滚动条的设置,这样看起来更像app一些。
通过一个属性,比如 showScrollbar :false来隐藏滚动条
The text was updated successfully, but these errors were encountered:
可以考虑给 nut-infinite-loading 的外层组件设置 CSS 隐藏滚动条:
` .infiniteUl { width: 100%; height: calc(100vh - 120px); padding: 0; margin: 0; overflow: auto; scrollbar-width: none; /* 隐藏滚动条 兼容 Firefox / -ms-overflow-style: none; / 隐藏滚动条 兼容 IE 10+ */ }
.infiniteUl::-webkit-scrollbar { display: none; /* 隐藏滚动条 兼容 Chrome Safari */ }`
Sorry, something went wrong.
请问解决了吗
No branches or pull requests
这个功能解决了什么问题?
InfiniteLoading希望能增加隐藏滚动条的设置,这样看起来更像app一些。
你期望的组件设计是怎样的?
通过一个属性,比如 showScrollbar :false来隐藏滚动条
The text was updated successfully, but these errors were encountered: