z-index.uvue 1.4 KB
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1 2
<template>
  <view style="flex-grow: 1;">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
3 4 5 6 7 8 9 10 11
    <view>
      <view class="common fixed" style="background-color: red;z-index: 10;">
        <text>position: fixed</text>
        <text>z-index: 10</text>
      </view>
      <view class="common fixed" style="background-color: green;z-index: 5;top: 175rpx;left: 175rpx;">
        <text>position: fixed</text>
        <text>z-index: 5</text>
      </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
12
    </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
13 14 15 16 17 18 19 20 21 22 23 24
    <view style="top: 500rpx;">
      <view class="common" style="background-color: red;z-index: 10;">
        <text>z-index: 10</text>
      </view>
      <view ref="view" class="common" style="background-color: green;z-index: 5;top: -75rpx;left: 175rpx;"
        @click="changeZIndex(20)">
        <text>z-index: {{zIndex}}</text>
        <text>点击修改z-index</text>
      </view>
      <view class="common" style="background-color: blue;top: -150rpx;left: 350rpx;">
        <text>z-index: 0</text>
      </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38
    </view>
  </view>
</template>

<script>
  export default {
    data() {
      return {
        zIndex: 5
      }
    },
    methods: {
      changeZIndex(zIndex : number) {
        this.zIndex = 20;
雪洛's avatar
雪洛 已提交
39
        (this.$refs['view'] as UniElement).style.setProperty('z-index', zIndex);
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
40 41 42 43 44 45 46 47 48 49 50 51
      }
    }
  }
</script>

<style>
  .common {
    width: 250rpx;
    height: 250rpx;
    justify-content: center;
    align-items: center;
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
52 53 54 55 56

  .fixed {
    position: fixed;
  }
</style>