Toast 原生封装

Posted lvzhenhome

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Toast 原生封装相关的知识,希望对你有一定的参考价值。

 Toast(msg, duration) {
      duration = isNaN(duration) ? 3000 : duration;
      var m = document.createElement("div");
      m.innerhtml = msg;
      m.style.cssText =
        "max-width:60%;min-width: 150px;padding:0 14px;height: 40px;color: rgb(255, 255, 255);line-height: 40px;text-align: center;border-radius: 4px;position: fixed;top: 50%;left: 50%;transform: translate(-50%, -50%);z-index: 999999;background: rgba(0, 0, 0,.7);font-size: 16px;";
      document.body.appendChild(m);
      setTimeout(function () {
        var d = 0.5;
        m.style.webkitTransition =
          "-webkit-transform " + d + "s ease-in, opacity " + d + "s ease-in";
        m.style.opacity = "0";
        setTimeout(function () {
          document.body.removeChild(m);
        }, d * 1000);
      }, duration);
    }

以上是关于Toast 原生封装的主要内容,如果未能解决你的问题,请参考以下文章

vue 3.0 封装 Toast 组件

UtilAndroid Toast封装

Python+Appium 获取 toast 方法的封装

python appium 封装获取toast方法

JavaScript封装Toast弹窗

突破小米悬浮窗权限控制--不需要权限的悬浮窗