4

默认<b-modal>显示在页面顶部。将属性centered添加到标签时。它居中。

但是,我想在页面顶部下方显示具有一定间隙的模态。
打开主页时会显示模态框。

AppModal.vue

<template>
<b-modal ref="thisModalRef" :modal-class="my-modal" size="lg" hide-header hide-footer no-close-on-backdrop hide-header-close>
    //...
</b-modal>
</template>
<script>
export default {
  data () {
    return {
      mymodal: ['mymodal']
    }
  },
  methods: {
    hideModal () {
      this.$refs.thisModalRef.hide()
    },
    showModal () {
      this.$refs.thisModalRef.show()
    }
  }
}
</script>

<style scoped>
  .mymodal > div {
    position: absolute;
    top: 300px;
    right: 100px;
    background-color: yellow;
  }
</style>

AppHome.vue

<template>
  <div>
    // omitted
    <AppModal ref="modalRef"></AppModal>
  </div>
</template>

<script>
import AppModal from './AppModal'

export default {
  components: {
    AppModal
  },
  data () {
    return {
      msg: 'Welcome to Your Vue.js App'
    }
  },
  methods: {
    showModal: function () {
      this.$refs.modalRef.showModal()
    }
  },
  mounted () {
    this.showModal()
  }
}
</script>

<style scoped>
// ommitted
</style>

modal相关的html源码

<div id="__BVID__16___BV_modal_outer_">
   <div id="__BVID__16" role="dialog" class="modal fade show d-block mymodal" style="padding-right: 15px;">
      <div class="modal-dialog modal-lg">
         <div tabindex="-1" role="document" aria-describedby="__BVID__16___BV_modal_body_" class="modal-content">
            <!---->
            <div id="__BVID__16___BV_modal_body_" class="modal-body">
               // ommitted
            </div>
            <!---->
         </div>
      </div>
   </div>
   <div id="__BVID__16___BV_modal_backdrop_" class="modal-backdrop fade show"></div>
</div>

如您所见,mymodal类已正确应用。但是 div.modal-dialog没有我给它的 css 属性。

在开发工具中找到的真正的 CSS 属性

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

我尝试添加一个自定义类<b-modal>并为其设置样式。没有任何效果。请帮忙。

4

4 回答 4

4

如果你想把模态放到特定的位置,下面是我的解决方案:

  1. <b-modal>通过其道具添加特定的类=modal-class

  2. 然后将您的样式添加到myclass > div

您可以查看github (line#:176),Bootstrap-vue 会将一个div.modal-content(包括 header/body/foot)放入一个带有 class="modal-dialog" 的 div 中,这是 root 的直接子级。

这就是为什么上述解决方案使用 css 选择器 = .myclass > div

如果您查看 dom 树:一个 bootstrap-vue 模态的结构将是:

一个根 div(myclass 将被添加到这里)-> 一个带有 modal-dialog 的 div -> 一个带有 modal-content 的 div -> header/body/footer

下面是一个示例:(我为模态对话框、模态内容设置了不同的背景颜色。

app = new Vue({ //not vue, it is Vue
  el: "#app",
  data: {
    myclass: ['myclass']
  },
  methods: {
    showModal: function(){
      this.$refs.myModalRef.show()
    }
  }
})
.myclass > div {
  position:absolute !important;
  top: -10px !important;
  left: -10px !important;
  background-color:yellow !important;
}

.myclass > .modal-dialog > .modal-content {
  background-color:red !important;
}
<!-- Add this to <head> -->
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap/dist/css/bootstrap.min.css"/>
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.css"/>

<!-- Add this after vue.js -->
<script src="https://unpkg.com/vue@2.5.16/dist/vue.js"></script>
<script src="//unpkg.com/babel-polyfill@latest/dist/polyfill.min.js"></script>
<script src="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.js"></script>
<div id="app">
    <b-button @click="showModal">
      Open Modal
    </b-button>
  <b-modal ref="myModalRef" :modal-class="myclass" size="lg">
      <h2>Test</h2>
  </b-modal>
</div>

于 2018-04-23T21:35:55.503 回答
2

我用

<b-modal
    body-class="modalcart"
    ref="addToCart"
    id="addToCarModal"
    hide-footer
    hide-header
>
<b-container class="text-center modal-product-content">
  <img class="modal-image" src="~/assets/images/add-to-cart.png" alt=""/>

和:

<style lang="scss" scoped>
/deep/ .modalcart {
  font-family: 'poppins-bold';
  /deep/ .modal-product-content {
    padding: 3rem;
    margin: 0 auto !important;
    /deep/ .modal-image {
      height: 150px;
      margin-bottom: 2rem;
      }
    }
  ...
  }
  </style>

和工作!谢谢
请记住,没有body-class和 /deep/ 就无法工作 我使用 node-sass、vue 3、vue-loader 15

于 2021-02-08T21:16:06.790 回答
0

也许您可以尝试使用类似margin-top: 100px.

于 2018-04-23T21:23:08.553 回答
0

我认为这是因为@mediaBootstrap 的断点。然后,<style>您只需覆盖它。

@media (min-width: 576px) {
    .modal-dialog {
        margin: .5rem auto;
    }
}
于 2018-04-28T14:22:04.120 回答