uni-app 在uni-app-x中position: fixed下嵌入position: fixed不显示内容 上一个版本还是好的

发布于 1周前 作者 itying888 来自 Uni-App

uni-app 在uni-app-x中position: fixed下嵌入position: fixed不显示内容 上一个版本还是好的

示例代码:

<view style="position: fixed;top: 100rpx;height: 400rpx;">
    <view style="height: 100rpx;background-color: red;width: 750rpx;"></view>
    <view style="position: fixed;top: 200rpx;">
        <view style="height: 100rpx;background-color: blue;width: 750rpx;"></view>
    </view>
</view>

操作步骤:

见代码

预期结果:

正常显示

实际结果:

不显示

bug描述:

如:遮罩层会用到position: fixed;。里面包裹的view如果继续使用position: fixed;则不显示。 版本3.96还是好的。3.97就出现这个错误了。 uniapp里可以正常显示,但是uni-app-x里面就不行了。 代码见代码示例


3 回复

上边的示例我试了3.96版也存在问题,请确认下描述是否准确,即将发布的3.98版本已经修复了该问题请关注下如果有问题再反馈


好,我会关注的

uni-app-x 中,如果你在 position: fixed 的元素中嵌套了另一个 position: fixed 的元素,并且发现内容不显示,这可能是由于 uni-app-x 的渲染机制或样式处理发生了变化。以下是一些可能的解决方案和排查步骤:

1. 检查层级关系

确保嵌套的 position: fixed 元素的 z-index 设置正确。如果父元素的 z-index 较低,可能会导致子元素被遮挡。

.parent {
  position: fixed;
  z-index: 10;
}

.child {
  position: fixed;
  z-index: 20; /* 确保子元素的 z-index 高于父元素 */
}

2. 检查父元素的尺寸

确保父元素有足够的尺寸来容纳子元素。如果父元素的宽度或高度为 0,子元素将无法显示。

.parent {
  position: fixed;
  width: 100%;
  height: 100%;
}

3. 检查父元素的 overflow 属性

如果父元素的 overflow 属性设置为 hidden,可能会导致子元素被裁剪。尝试将其设置为 visible

.parent {
  position: fixed;
  overflow: visible;
}

4. 检查 uni-app-x 的版本差异

如果上一个版本是正常的,而当前版本出现问题,可能是 uni-app-x 的更新引入了某些变化。建议查看 uni-app-x 的更新日志,看看是否有相关的改动。

5. 使用 transform 替代 position: fixed

在某些情况下,使用 transform 可以实现类似 position: fixed 的效果,同时避免嵌套问题。

.parent {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(0);
}

.child {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(0);
}

6. 使用 uni-app-x 提供的组件

如果上述方法都无法解决问题,可以尝试使用 uni-app-x 提供的特定组件或 API 来实现类似的效果,而不是直接使用 position: fixed

7. 反馈给官方

如果问题依然存在,建议将问题反馈给 uni-app-x 的官方团队,提供详细的代码和复现步骤,以便他们进行排查和修复。

示例代码

以下是一个简单的示例,展示如何正确嵌套 position: fixed 元素:

<template>
  <view class="parent">
    <view class="child">
      这是子元素内容
    </view>
  </view>
</template>

<style>
.parent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.child {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
</style>
回到顶部
AI 助手
你好,我是IT营的 AI 助手
您可以尝试点击下方的快捷入口开启体验!