function insert() {
console.log("insert");
if (document.getElementById("temp-id")) return;
const sty = document.createElement("style");
sty.innerHTML = `
* {
animation-duration: 0s !important;
}
`;
sty.id = "temp-id";
document.head.appendChild(sty);
}
function remove() {
try {
document.head.removeChild(document.getElementById("temp-id"));
} catch (e) {
}
}
原生js插入样式文件
最新推荐文章于 2023-03-08 19:54:00 发布