收藏
回答

自定义tabbar如何固定button拖拽区域?

源生的tabbar只能拖到导航栏上方

我自定义的拖拽button能拖到底部,希望能和源生一样

回答关注问题邀请回答
收藏

2 个回答

  • Demons
    Demons
    2023-10-24

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2023-10-24
    有用
    回复 1
  • H1HAO 🇨🇳
    H1HAO 🇨🇳
    2023-10-24

    拖拽button是否使用的是movable-area


    如果是请加入样式


    .fixed-box { //movable-area

    pointer-events: none;

    width: 100vw;

    height: calc(100vh - 120rpx - constant(safe-area-inset-bottom));

    height: calc(100vh - 120rpx - env(safe-area-inset-bottom));

    position: fixed;

    left: 0;

    top: 0;

    z-index: 666;

    }


    .fixed-button { // movable-view

    pointer-events: auto

    }


    height: calc(100vh - 120rpx - constant(safe-area-inset-bottom));

    height: calc(100vh - 120rpx - env(safe-area-inset-bottom));

    里面的120rpx改成你的底部栏高度

    2023-10-24
    有用
    回复 1
    • 玉兔捣药
      玉兔捣药
      2023-10-25
      感谢,这个思路我试试~
      2023-10-25
      回复
登录 后发表内容