微信小程序fixed定位后scroll-view滚动失效问题

时间:2025-04-02 18:05:46

如图微信小程序中 scroll-view组件外div加display:flxed或者是absolute后, scroll-view组件滚动失效。

解决办法:

  1. scroll-view宽度为屏幕宽度,

  2. 子元素设置overflow:auto;内容超出屏幕会出滚动条,然后便可以拖动了,

  3. 最外层header设置overflow-y: hidden;隐藏滚动条,实现了模拟scroll-view的效果

  4. 点击时 设置元素cur为当前点击view的offsetLeft

<view class="header">
          <scroll-view class="scroll-view_H" scroll-x="{{true}}">
            <view class="cont">
                <view class="list">
                      <view class="green" wx:for="{{tags}}" wx:key="{{index}}" bindtap='fnclick'>{{item}}</view>
                  </view>
                <view class="cur" style='left:{{left}}px'></view>
            </view>
          </scroll-view>
 </view>
.header{
  background: #fff;
  position: fixed;
  z-index: 200;
  top:0;
  left: 0;
  height: 60rpx;
  overflow-y: hidden;
}
.header .cont{
  white-space: nowrap;
  position: relative;
  height: 90rpx;
  overflow:auto;
  width:750rpx;

}
.header .cont .list view{
 width: 120rpx;
 display: inline-block;
 text-align: center;
font-size: 30rpx;
}
.cur{
  position: absolute;
  left: 0;
  bottom: 30rpx;
  width: 70rpx;
  height: 6rpx;
  background: yellow;
  margin-left: 25rpx;
  transition: .5s all ease;
}

Page({
     data:{
      tags:[
          "smile",
          "smile", 
          "smile", 
          "smile", 
          "smile",
          "smile",
          "smile", 
          "smile", 
          "smile", 
          "smile", 
          "smile"
      ],
      left:0,
    },
    onLoad(){
    },
    // 导航条鼠标跟随
    fnclick(ev){
      ({
        left:
      })

    },

})