美文网首页
浏览器暗黑模式阅读PDF

浏览器暗黑模式阅读PDF

作者: pingwazi | 来源:发表于2021-07-20 13:57 被阅读0次

    1、 打开浏览器的控制台
    2、拷贝如下命令到控制台,按回车执行

    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);
    

    3、关闭控制台,效果实现

    相关文章

      网友评论

          本文标题:浏览器暗黑模式阅读PDF

          本文链接:https://www.haomeiwen.com/subject/yhcosktx.html