浏览器暗黑模式阅读PDF

2021-07-20  本文已影响0人  pingwazi

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、关闭控制台,效果实现

上一篇 下一篇

猜你喜欢

热点阅读