91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue如何自定義氣泡彈窗

發布時間:2022-08-30 11:52:55 來源:億速云 閱讀:253 作者:iii 欄目:開發技術

這篇“vue如何自定義氣泡彈窗”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“vue如何自定義氣泡彈窗”文章吧。

vue如何自定義氣泡彈窗

src/components/myComponents/pop/pop.vue

<template>
    <div class="tips animation" :class="{'shake': type === 'shake'}" v-show="isShow" ref="tips">
        <div class="content">{{msg}}</div>
    </div>
</template>
<script>
    export default {
        name: 'Pop',
        props: {
            type: {
                type: String,
                default: ''
            },
            msg: {
                type: String,
                default: ''
            },
            isShow: {
                type: Boolean,
                default: false
            }
        },
        watch: {
            isShow(newval, oldval) {
                if (newval !== oldval && newval === true) {
                    // 顯示pop組件
                    setTimeout(() => {
                        let height = this.$refs.tips.clientHeight
                        let width = this.$refs.tips.clientWidth
                        this.$refs.tips.style.marginLeft = -width / 2 + 'px'
                        this.$refs.tips.style.marginTop = -height / 2 + 'px'
                    }, 0)
                    setTimeout(() => {
                        this.isShow = false
                        this.msg = ''
                        this.type = ''
                    }, 3000)
                }
            }
        }
    }
</script>
<style scoped>
    @keyframes shake {
        0%,
        100% {
            transform: translateX(0);
        }
 
        10%,
        30%,
        50%,
        70%,
        90% {
            transform: translateX(-10px);
        }
 
        20%,
        40%,
        60%,
        80% {
            transform: translateX(10px);
        }
    }
 
    .tips {
        position: fixed;
        left: 50%;
        top: 50%;
        z-index: 2000;
    }
 
    .animation {
        animation-fill-mode: both;
        animation-duration: 0.3s;
    }
 
    .content {
        background: rgba(0, 0, 0, 0.4);
        color: #fff;
        padding: 10px 15px;
        border-radius: 6px;
    }
 
    .shake {
        animation-name: shake;
    }
</style>

src/components/myComponents/pop/index.js

import PopComponent from './pop.vue'
 
const Pop = {}
Pop.install = (Vue) => {
    // 注冊pop組件
    const PopConstructor = Vue.extend(PopComponent)
    const instance = new PopConstructor()
    instance.$mount(document.createElement('div'))
    document.body.appendChild(instance.$el)
    // 添加實例方法,以供全局進行調用
    Vue.prototype.$pop = (type, msg) => {
        instance.type = type
        instance.msg = msg
        instance.isShow = true
    }
}
export default Pop

src/main.js

import Pop from '@/components/myComponents/pop'
Vue.use(Pop)

使用

第一個參數為動畫樣式名稱&mdash;&mdash;傳空字符串時無晃動動畫(可以修改pop.vue,添加更多動畫效果)
第二參數為顯示的信息
this.$pop('shake','簽到成功!')

以上就是關于“vue如何自定義氣泡彈窗”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

民县| 天气| 怀仁县| 九寨沟县| 兴和县| 隆化县| 山丹县| 南木林县| 马龙县| 宜阳县| 中超| 深圳市| 虹口区| 六枝特区| 公安县| 布尔津县| 竹溪县| 井陉县| 淮安市| 永清县| 宝丰县| 抚州市| 仁寿县| 柳江县| 长葛市| 绵阳市| 临高县| 迁安市| 罗城| 祁连县| 浦北县| 栖霞市| 连城县| 宝应县| 哈密市| 黔西| 神农架林区| 洮南市| 宜章县| 上栗县| 新巴尔虎左旗|