根据佬友证实
我认为准确的说是不能再通过这个菜单查看草稿了
以前好像是个加号
还真的变了w
你这一说我就想起来了 好像确实是
草稿也改名为“我的帖子”了
我就说我找半天没找到草稿 ![]()
不过我的帖子好像一直都是在的
之前草稿名字叫“我的草稿”吧
现在保存的草稿不会显示了 必须要去我的帖子里找
更麻烦了 当然主页的创建话题右边可以快速看到草稿
852个草稿
so much nightly
悄咪咪的改变
我只是日常滚动升级了一下版本 ![]()
下次记得发更新报告 我是真玩不明白 ![]()
不过始皇之前发过会滚动升级,发过不清楚更新了什么…
说不定哪天始皇的头像就会转了)
唔…你这个不是变了吗 他们说以前是加号
那我真没有。感兴趣的佬友可以去看官方commit记录
// ==UserScript==
// @name Make the King Shine!
// @namespace http://tampermonkey.net/
// @version 0.1
// @description The Great King of Qin must shine all over the world!
// @author Talented Bug (GPT'd)
// @match https://linux.do/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// Configurable rolling speed (in seconds)
const rollSpeed = 5; // change this to control rolling speed
// The src to search for
// Apply the effect to any other avatar by setting it here
const targetSrc = "/user_avatar/linux.do/neo/96/12_2.png";
// CSS to make the whole div shiny and rolling
GM_addStyle(`
.shiny-roll {
animation: rollAnimation ${rollSpeed}s linear infinite, shineAnimation 1s ease-in-out infinite;
transform-origin: center center;
}
@keyframes rollAnimation {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes shineAnimation {
0% { filter: brightness(1); }
50% { filter: brightness(2); }
100% { filter: brightness(1); }
}
`);
// Search for all divs with the class 'topic-avatar'
const avatarDivs = document.querySelectorAll('div.topic-avatar');
// Loop through all the divs and check if they contain the target image
avatarDivs.forEach(div => {
const img = div.querySelector('img');
if (img && img.src.includes(targetSrc)) {
// Add the "shiny-roll" class to the div to trigger the animation
div.classList.add('shiny-roll');
}
});
// Optionally, observe changes to the page (like divs being dynamically added)
const observer = new MutationObserver(mutations => {
mutations.forEach(mutation => {
mutation.addedNodes.forEach(node => {
if (node.tagName === 'DIV' && node.classList.contains('topic-avatar')) {
const img = node.querySelector('img');
if (img && img.src.includes(targetSrc)) {
node.classList.add('shiny-roll');
}
}
});
});
});
// Start observing the body for added nodes
observer.observe(document.body, { childList: true, subtree: true });
})();
拿 GPT 糊了一个 ![]()
太强了,我都没发现
嗷嗷sry, 才看明白