50楼#
发布于:2023-02-02 13:50
|
|
51楼#
发布于:2023-02-02 22:04
|
|
54楼#
发布于:2023-02-09 21:12
|
|
55楼#
发布于:2023-02-09 21:14
|
|
56楼#
发布于:2023-02-09 21:39
|
|
57楼#
发布于:2023-02-09 21:44
|
|
59楼#
发布于:2023-02-10 00:16
xiaozhuan:对,明暗这个,要移动就把这些必要但不常用的都移下来。 搞定了 '<button id="theme" class="bottom-button" style="width:15%;">暗</button>' document.getElementById("theme").ontouchstart = function () { var Ctheme = document.getElementById("css"); tColor = document.getElementById("theme"); if (tColor.innerHTML == "暗") { Ctheme.href = Ctheme.href.substr(0, Ctheme.href.length - 12) + "keyboardl.css"; console.log(Ctheme.href); tColor.innerHTML = "明"; } else { Ctheme.href = Ctheme.href.substr(0, Ctheme.href.length - 13) + "keyboard.css"; console.log(Ctheme.href); tColor.innerHTML = "暗"; } } |
|