User:Leranjun/WDC/script.js
注意:在您儲存之後您必須清除瀏覽器快取才可看到最新的變動。
- Firefox / Safari:按住「Shift」時點選「重新整理」,或按「Ctrl-F5」或「Ctrl-R」 (Mac則為「⌘-R」)
- Google Chrome:按「Ctrl-Shift-R」 (Mac 則為「⌘-Shift-R」)
- Internet Explorer:按住「Ctrl」時點選「重新整理」,或按「Ctrl-F5」
- Opera:進入「工具→偏好設定」中清除快取。
- 如果您已登入但該頁面出現未登入狀態,請嘗試在網址列的URL最後新增代碼
?_=1
來訪問最新頁面。- 新增如上代碼後的本頁地址:
http://zh.moegirl.tw/User:Leranjun/WDC/script.js?_=1
- 新增如上代碼後的本頁地址:
if ($(".wdc-wrapper")[0]) {
const c1 = "font-size:1.5em;color:#ED5564",
c2 = "font-size:1.5em;color:#FFCE54",
c3 = "font-size:1.5em;color:#A0D568",
c4 = "font-size:1.5em;color:#4FC1E8",
c5 = "font-size:1.5em;color:#AC92EB";
console.log("%c" + decodeURIComponent("%E2%96%88%E2%96%88%E2%80%83%20%20%20%20%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%80%83%20%20%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%80%83%0A") + "%c" + decodeURIComponent("%E2%96%88%E2%96%88%E2%80%83%20%20%20%20%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%80%83%E2%80%83%E2%80%83%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%80%83%E2%80%83%E2%80%83%E2%80%83%E2%80%83%E2%80%83%0A") + "%c" + decodeURIComponent("%E2%96%88%E2%96%88%E2%80%83%20%E2%96%88%E2%80%83%20%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%80%83%20%20%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%80%83%20%20%20%20%20%0A") + "%c" + decodeURIComponent("%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%80%83%20%20%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%80%83%20%20%20%20%20%0A") + "%c" + decodeURIComponent("%E2%80%83%E2%96%88%E2%96%88%E2%96%88%E2%80%83%E2%96%88%E2%96%88%E2%96%88%E2%80%83%E2%80%83%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%80%83%E2%80%83%E2%80%83%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%96%88%E2%96%88%20%0A") + "\n%cW%ci%cn%cd%co%cw%cs %cD%ce%cs%ck%ct%co%cp %cC%cl%co%cn%ce %cv%c1%c.%c0\n%cB%cy %cU%cs%ce%cr%c:%cL%ce%cr%ca%cn%cj%cu%cn",
"font-size:2em;color:#ED5564",
"font-size:2em;color:#FFCE54",
"font-size:2em;color:#A0D568",
"font-size:2em;color:#4FC1E8",
"font-size:2em;color:#AC92EB",
c1, c2, c3, c4, c5, c1, c2, c3, c4, c5, c1, c2, c3, c4, c5, c1, c2, c3, c4, c5, c1, c2, c3, c4, c5, c1, c2, c3, c4, c5, c1, c2, c3, c4, c5, c1, c2, c3);
$(".wdc-js-notice").hide();
/*
Grid fixed (at least better /shrug), no need to fallback for now
// Safari fallback
const UA = navigator.userAgent;
if (UA.includes("Safari/") && !UA.includes("Chrome/") && !UA.includes("Chromium/")) {
$(".wdc-personalisation").hide();
$(".wdc-wrapper").hide();
$(".wdc-fallback").removeClass("mobileonly");
throw new Error("WDC: Safari detected, stopping script.");
}
*/
/*
Implemented with {{tl|切換顯示按鈕}}
// Start menu
const startIcon = $(".wdc-taskbar-start-icon-wrapper");
const startMenu = $(".wdc-start-wrapper");
startIcon.css("cursor", "pointer");
startMenu.removeClass("textToggleDisplay hidden");
$("label[data-id='start']").remove();
startMenu.css("display", "none");
startIcon.click(function() {
startMenu.fadeToggle();
});
*/
// User avatar
const username = mw.config.get("wgUserName");
$(".wdc-start-user-avatar").attr("src", "https://commons.moegirl.org/extensions/Avatar/avatar.php?user=" + username);
// Blurring
const startMenu = $(".wdc-start-wrapper");
const taskBar = $(".wdc-taskbar-wrapper");
startMenu.css("backdrop-filter", "blur(5px)");
taskBar.css("backdrop-filter", "blur(5px)");
// Clock
const check0 = function (t) {
return ('0' + t).slice(-2);
};
setInterval(function () {
const d = new Date();
const t = check0(d.getHours()) + ":" + check0(d.getMinutes()) + ":" + check0(d.getSeconds());
$(".wdc-clock-time").text(t);
}, 1000);
}
此頁面最後編輯於 2021年3月13日 (星期六) 15:46。