码迷,mamicode.com
首页 > 其他好文 > 详细

文字预览蒙层组件

时间:2020-05-21 00:38:20      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:flag   垂直居中   icon   bool   radius   src   methods   组件   image   

在写这个组件遇见的问题。
布局的时候,装文字的盒子mask这个类。
(1)无法垂直居中??
display: flex;
align-items: center;

(2)关闭按钮无法在盒子mask这个类的正上上方??
改动了一下html布局,让按钮在盒子mask里面。
让后通过子绝父相,进行定位。

组件

<template>
    <div class="page">
        <div v-if="showflag" class="mask">
            <div class="cont-div">
                <van-icon @click="closeHandler" class="close-icon" name="close" />阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
                阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰 阿法发顺丰
            </div>
        </div>
    </div>
</template>

<script>
export default {
    data() {
        return {
        }
    },
    props: {
        showflag: {
            type: Boolean,
            default: false
        }
    },

    methods: {
        closeHandler() {
            this.$emit(‘close‘)
        }
    },
}
</script>

<style lang="scss" scoped>
.mask {
    background: rgba(0, 0, 0, 0.4);
    // 水平居中  垂直居中
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;

    //让这个框中水平和垂直方向上居中
    display: flex;
    align-items: center;

    .cont-div {
        width: 311px;
        height: auto;
        background: #ffffff;
        border-radius: 4px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
}
// 控制按钮的方向
.close-icon {
    color: #fff;
    font-size: 20px;
    position: absolute;
    right: -10px;
    top: -48px;
    padding: 10px;
}
</style>

使用组件

<!-- 文字弹出层 -->
<van-button type="primary" @click="openDecMask">文字弹出层</van-button>

<dec-mask :showflag="showflag" @close="hnadlerClose"></dec-mask>

 components: {
     ‘dec-mask‘: () => import(‘../components/dec-Mask‘)
 },

methods:{
   //打开文字预览组件
   openDecMask() {
      this.showflag = true;
   },
    
   //关闭文字预览组件
   hnadlerClose() {
    this.showflag = false;
  }
}

技术图片

文字预览蒙层组件

标签:flag   垂直居中   icon   bool   radius   src   methods   组件   image   

原文地址:https://www.cnblogs.com/ishoulgodo/p/12927219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!