我是靠谱客的博主 乐观小鸭子,最近开发中收集的这篇文章主要介绍vue自定义toast组件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

//toast.js

const  TOAST_CLASS = 'toast'
const  TOAST_OUT_CLASS = 'toast out'
let innerHtml=""
function  toast(msg,time=1000) {
    let body=document.querySelector('#app');
    if(body.querySelector('.toast')){
        body.removeChild(body.querySelector('.toast'))
    }
    let toastElem = document.createElement('div')
    toastElem.setAttribute('class',TOAST_CLASS)
    innerHtml = `<sapn>${msg}</sapn>`
    toastElem.innerHTML = innerHtml;
    body.appendChild(toastElem);
    setTimeout(function () {
        toastElem.setAttribute('class',TOAST_OUT_CLASS)
    },time)
    setTimeout(function () {
        let elm = body.querySelector('.toast');
        if(elm){
            body.removeChild(elm)
        }
    },time+1000)

}
export  default toast

//toast.less

@-webkit-keyframes toastIn {
  0%{
    opacity: 1;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
@-webkit-keyframes toastOut {
  0%{
    opacity:1;
  }
  50%{
    opacity:0.7;
  }
  100%{
    opacity:0;
  }
}
//animation: name duration timing-function delay iteration-count direction;
.toast{
  position: fixed;
  z-index:99;
  background-color: rgba(0,0,0,0.6);
  color:#fff;
  padding:15px 25px;
  border-radius:5px;
  top: 50%;
  left:50%;
  font-size:18px;
  transform: translate(-50% , -50%);
  animation-name: toastIn;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-delay: 0s;
}

.toast.out {
  animation-name: toastOut;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

使用:
全局注入(main.js),this._toast(‘XXXX’)调用

import toast from "./utils/toast";

window._toast = toast

最后

以上就是乐观小鸭子为你收集整理的vue自定义toast组件的全部内容,希望文章能够帮你解决vue自定义toast组件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部