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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
ps. 望采纳
The text was updated successfully, but these errors were encountered:
No branches or pull requests
a. updateDataChange 更新数据并未触发更新top
b. navigationStyle custom 时 吸顶判断scrollTop 和 top 相对位置就变更了,固定位置应根据properties传参(假定fixedTop)来实现吸顶位置(上面会有自定义头部)
** 判断isFixed 里的top 实际获得应该是updateScrollTopChange 函数下 query.select( className ).boundingClientRect((res) 拿到scrollTop + res.top 的值 即已滚动高度 + 容器距离窗口顶部高度距离 那么判断条件变更为:
const isFixed = ( scrollTop >= top - fixedTop && scrollTop < top + height - fixedTop) ? true : false
c. 另外部分options.addGlobalClass = true 加入方便样式覆盖,开发上会获得更好的体验
ps. 望采纳
The text was updated successfully, but these errors were encountered: