把当前img作为到爷爷的背景图

(忽略图大小不一致,一般UI给的图会刚好适合页面大小,我这网上找的图,难调大小,我行内的就自己随便写的宽高),另外悄悄告诉你最后有简单方法~~

先来看看初始DOM结构代码


<template>
  <div id="app">
    <div class="bodyy">
      <div class="grandparent">
        <div class="parent">
          <img class="imgClass" style="width: 320px; height:120px" src="https://img0.baidu.com/it/u=2190700831,1994064510&fm=253&fmt=auto&app=138&f=JPEG?w=667&h=500">
        </div>
        <div class="brother1">222</div>
        <div class="brother2">333</div>
        <div>5555</div>
      </div>
    </div>

  </div>
</template>

最开始图片在他本来的DOM结构里面,爷爷也没有背景,这样的DOM是把两个叔叔抵下去的
在这里插入图片描述

在这里插入图片描述

假设我们已经固定了图片为孙子,但是我们想要这个图片作为整个爷爷的背景图,想要其他该在爷爷上边的元素的层级不变,也就是这样的DOM结构:
在这里插入图片描述
效果是这样
在这里插入图片描述

话不多说,直接上代码:(这里要通过img的class获取爷爷元素,所以用v-show当满足某种条件才渲染这种我需要的样式,倘若知道爷爷元素和图片的大小直接v-if


<template>
  <div id="app">
    <div class="bodyy">
      <div class="grandparent">
        <div class="parent">
          <img class="imgClass" v-show="a != 1" src="https://img2.baidu.com/it/u=443161650,959310912&fm=253&fmt=auto&app=138&f=JPEG?w=888&h=500">
        </div>
        <div class="brother1">222</div>
        <div class="brother2">333</div>
      </div>
    </div>

  </div>
</template>

<script>

import SlotDemo from '@/views/slotDemo/index.vue'
export default {
  name: 'App',
  data() {
    return {
      a: 1
    }
  },
  components: {
    SlotDemo
  },
  mounted() {
    if(this.a == 1) {
      console.log('000000')
      this.showImg()
    }
  },
  methods: {
    showImg() {
    // 获取到当前 <img> 元素
    // var imgElement = document.querySelector('img');
    var imgElement = document.getElementsByClassName('imgClass')
    console.log('999', imgElement.width, imgElement.height, typeof(imgElement.height + 'px'))
    let numm = imgElement.height + 'px'
    console.log('numm', numm)
    // 获取当前 <img> 元素的父元素的父元素
    var grandParentElement = imgElement[0].parentElement.parentElement;
    console.log('grandParentElement', grandParentElement)
    // 设置父元素的父元素的背景图
    grandParentElement.style.backgroundImage = `url('https://img0.baidu.com/it/u=2190700831,1994064510&fm=253&fmt=auto&app=138&f=JPEG?w=667&h=500')`;
    grandParentElement.style.backgroundSize = 'cover';  // 设置背景图片的尺寸适应父元素大小
    grandParentElement.style.height = numm; 

    },
    
  }
  
}
</script>

<style >
*{
  margin: 0;
  padding: 0;
}
.bodyy{
  background: #798866;
  z-index: 8888;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  .grandparent{
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    min-height: 3.5rem;
    background: #ffffff;
    border-top-left-radius: 0.48rem;
    border-top-right-radius: 0.48rem;
    .parent{
      background: blue;
      img{
      
      }
    }
    .brother1{
      //background: white; 
      position: relative;
      height: auto;
      margin-top: 15rem;

    }
    .brother2{
     
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      margin-top: 0.36rem;
      margin-bottom: 0.68rem;
      width: 100%;
      height: auto;
      position: relative;
    }
}

}

</style>

TIPS:有个简单单方案就是直接给parent加一个margin-bottom!!
在这里插入图片描述

相关推荐

  1. 怎么VMamba作为Feature Extractor集成现有模型

    2024-07-16 22:12:05       26 阅读
  2. unity(WebGL) 保存下载本地

    2024-07-16 22:12:05       56 阅读
  3. DNS背景工作原理和作用

    2024-07-16 22:12:05       32 阅读
  4. C++ 引用作为参数

    2024-07-16 22:12:05       55 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-16 22:12:05       70 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-16 22:12:05       74 阅读
  3. 在Django里面运行非项目文件

    2024-07-16 22:12:05       62 阅读
  4. Python语言-面向对象

    2024-07-16 22:12:05       72 阅读

热门阅读

  1. 栈与队列的相关理论及联系

    2024-07-16 22:12:05       23 阅读
  2. ES6 Symbol (十三)

    2024-07-16 22:12:05       23 阅读
  3. 通义灵码初体验_在Visual Studio Code中编写python代码

    2024-07-16 22:12:05       20 阅读
  4. 代码指导“Kimi”比“文心一言”香

    2024-07-16 22:12:05       18 阅读
  5. Spring源码注解篇三:深入理解@Component注解

    2024-07-16 22:12:05       25 阅读
  6. git开发流程

    2024-07-16 22:12:05       19 阅读
  7. 5. 基于Embedding实现超越elasticsearch高级搜索

    2024-07-16 22:12:05       25 阅读
  8. 业务需求方面

    2024-07-16 22:12:05       20 阅读
  9. ABC分析模型详解

    2024-07-16 22:12:05       19 阅读
  10. Ceph资源池pool管理

    2024-07-16 22:12:05       18 阅读
  11. 常用知识点问答

    2024-07-16 22:12:05       22 阅读
  12. MongoDB 面试题及答案整理,最新面试题

    2024-07-16 22:12:05       20 阅读
  13. 记录一次Android推流、录像踩坑过程

    2024-07-16 22:12:05       20 阅读