开发环境:
vue+vant
遇到问题:
使用了vant的Sticky 粘性布局,首页顶部header,在Android中可以实现顶部吸附。但是ios却不行了,会延迟,只有在滚动停止时才吸附。
可能原因:
ios无法实时监听onscroll事件 ,ios节流了
解决办法:
开始对van-sticky设置样式:position: fixed,得以解决,自试可行!
/deep/.van-sticky{position: fixed;top: 0;right: 0; left: 0;z-index: 9999;}