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

Toast 原生封装

时间:2020-07-24 16:36:02      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:form   lin   app   innerhtml   enter   document   opacity   ack   tran   

 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 原生封装

标签:form   lin   app   innerhtml   enter   document   opacity   ack   tran   

原文地址:https://www.cnblogs.com/lvzhenHome/p/13371641.html

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