请问一下,如何配合tab做滑动悬停效果
zhuoshirong opened this issue · 5 comments
zhuoshirong commented
请问一下,如何配合tab做滑动悬停效果
wzs28150 commented
有效果图或者例子么 你说的滑动悬停效果我脑子里没什么概念呢
zhuoshirong commented
demo: https://developers.weixin.qq.com/s/p7cvcPmG7cAN 类似这种效果,这个是代码片段,scrollview里面做吸顶,我试了好几种兼容都不怎么好,感谢大佬
wzs28150 commented
你用的position: sticky;实现的吸顶,在开发者工具和安卓上可能没问题,ios上可能有问题。你看下官方给的组件https://github.com/wechat-miniprogram/miniprogram-component-plus/tree/master/src/sticky
zhuoshirong commented
官方的组件我看也是用的 position: fixed,差不多一样的
.weui-sticky__fixed {
position: fixed;
left: 0;
top: 0;
}
wzs28150 commented