【原生小程序小程序开发中,块内容使用position绝对定位之后 不显示】

原来写法

html 复制代码
<view class="map_bg" id="weixinMap" bindtap="event" style="display: none;">
        <map subkey="{{subKey}}" style="width:100%;height:100%;z-index: -10;"  latitude="23.099994" longitude="113.324520" scale="18" enable-zoom="{{false}}" enable-scroll="{{false}}">
        </map>
        <view class="map_company flex_start">
          <image class="map_site" src="../../public/images/companyshow/tc_icon.png"></image>
          <view class="company">
            <view class="companyname omit">{{base_info.companyname}}</view>
            <view class="district omit">{{base_info.district_text}}</view>
          </view>
          <view class="arrow_right"></view>
        </view>
      </view>
      <view class="address address_distance">
        <image class="map_site" src="../../public/images/jobshow/address.png"></image>
        {{distance||'计算中'}}
      </view>
css 复制代码
.company_item .map_company{
padding: 10rpx;
width: 550rpx;
 height: 80rpx;
 border-radius: 8rpx;
 background: #fff;
 position:absolute;
 top:-50%;
 left:-50%;
 transform:translate(-50%,-50%);
 color: #000;
 }

解决:在map外面包一层以及整体在外面包一层+定位修改为static+z-index

html 复制代码
<view>
        <view class="map_bg" id="weixinMap" bindtap="event">
            <map subkey="{{subKey}}" style="width:100%;height:100%;z-index: -10;" latitude="23.099994" longitude="113.324520" scale="18" enable-zoom="{{false}}" enable-scroll="{{false}}">
            </map>
        </view>
        <view class="map_company flex_start">
          <image class="map_site" src="../../public/images/companyshow/tc_icon.png"></image>
          <view class="company">
            <view class="companyname omit">{{base_info.companyname}}</view>
            <view class="district omit">{{base_info.district_text}}</view>
          </view>
          <view class="arrow_right"></view>
        </view>
      </view>
      <view class="address address_distance">
        <image class="map_site" src="../../public/images/jobshow/address.png"></image>
        {{distance||'计算中'}}
      </view>
css 复制代码
.company_item .map_company {
  padding: 10rpx;
  width: 550rpx;
  height: 80rpx;
  border-radius: 8rpx;
  background: #fff;
  position:static;
  margin: -23% auto 0;
  z-index: 1000;
  color: #000;
}
相关推荐
超级无敌攻城狮43 分钟前
3 分钟学会!波浪文字动画超详细教程,从 0 到 1 实现「思考中 / 加载中」高级效果
前端
excel1 小时前
用 TensorFlow.js Node 实现猫图像识别(教学版逐步分解)
前端
gnip2 小时前
JavaScript事件流
前端·javascript
赵得C2 小时前
【前端技巧】Element Table 列标题如何优雅添加 Tooltip 提示?
前端·elementui·vue·table组件
wow_DG2 小时前
【Vue2 ✨】Vue2 入门之旅 · 进阶篇(一):响应式原理
前端·javascript·vue.js
weixin_456904272 小时前
UserManagement.vue和Profile.vue详细解释
前端·javascript·vue.js
资深前端之路2 小时前
react 面试题 react 有什么特点?
前端·react.js·面试·前端框架
aaaweiaaaaaa2 小时前
HTML和CSS学习
前端·css·学习·html
秋秋小事2 小时前
React Hooks useContext
前端·javascript·react.js
Jinuss2 小时前
Vue3源码reactivity响应式篇之reactive响应式对象的track与trigger
前端·vue3