自定义toast提示
2020/10/22
function Toasts(txt
) {
let c_div
= document
.createElement("div");
c_div
.innerHTML
= txt
;
c_div
.style
=
"font-size:16px;padding:5px 8px;border-radius:5px;background-color:rgba(0,0,0,.6);text-align:center;color:#ffffff;width:auto !important;display:inline;position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);";
document
.body
.appendChild(c_div
);
let times
= setInterval(function() {
document
.body
.removeChild(c_div
);
clearInterval(times
);
}, 2000);
};
转载请注明原文地址: https://lol.8miu.com/read-28558.html