📌  相关文章
📜  如何在没有管理员权限的情况下安装 mysql - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:07.879000             🧑  作者: Mango

代码示例1
var cover = document.createElement("div"); 
let css = ` 
    position: fixed; 
    pointer-events: none; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    background-color: white; 
    mix-blend-mode: difference; 
    z-index: 1; 
` 
cover.setAttribute("style", css); 
document.body.appendChild(cover);