📆2024年9月5日

将部分页面的音乐换成了网易云外链

📆2024年8月16日

增加了暗夜模式

📆2022年2月1日

给网站背景调成随一天时间段变化

一共三张图片,原图作者为P站画师:成全所在

后来被lop-制作成Wallpaper engine壁纸软件的动态壁纸

实现思路,在主题中的Banner设置中添加 是否开启背景图随时间变化的选栏,开启后分别导入早中晚的图片,根据代码判断时间,显示相应图片。

📆2021年11月14日

在网站中加入COVID-19 疫情地图

在网上乱逛,发现翠翠的博客侧边栏有个COVID-19 疫情地图,觉得很有意义,然后在他的博客里发现了原文出于果核剥壳的这篇文章,只需直接iframe 调用就可以了(我就喜欢这种的,对我来说简单,直接就能用)

在此感谢大佬们的付出。

大小都可以自己修改,更多详细内容去原文看吧❤️

<iframe src="https://www.lovestu.com/api/project/cnmapyinqing/obj.php" height="500" frameborder="no" border="0" width="100%"> </iframe>                                  

📆2021年11月1日

 Wordpress在网站下面添加运行时间

看见很多人的博客下面有这个运行时间,我觉得还是挺有纪念意义的,可以看到网站运行了多久

效果图:

想要实现很简单,把下面的代码复制粘贴到相应位置

本博客已稳定运行了:<span id=”run_time” style=”color: black;”></span> <script>

function runTime() {

var d = new Date(), str = ”;

BirthDay = new Date(“2021-10-30”); //这里是你的建站日期

today = new Date(); timeold = (today.getTime() – BirthDay.getTime());

sectimeold = timeold / 1000 secondsold = Math.floor(sectimeold);

msPerDay = 24 * 60 * 60 * 1000 msPerYear = 365 * 24 * 60 * 60 * 1000 e_daysold = timeold / msPerDay e_yearsold = timeold / msPerYear

daysold = Math.floor(e_daysold);

yearsold = Math.floor(e_yearsold);

//str = yearsold + “年”;

str += daysold + “天”;

str += d.getHours() + ‘时’;

str += d.getMinutes() + ‘分’; str += d.getSeconds() + ‘秒’; return str; } setInterval(function () { $(‘#run_time’).html(runTime()) }, 1000);

</script>