侧边栏壁纸

【Typecho】设置标题栏自动变化

2024年09月03日 73阅读 0评论 0点赞

其实很简单,直接上代码
将代码复制粘贴到 自定义输出body 尾部的HTML代码
或者 post.php 里
修改里面的关键字即可

<script>
var OriginTitile = document.title,
titleTime;
document.addEventListener("visibilitychange",
function() {
    if (document.hidden) {
        document.title = "网页已崩溃!";
        clearTimeout(titleTime)
    } else {
        document.title = "(/≧▽≦/)你又回来了! " ;
        titleTime = setTimeout(function() {
            document.title = OriginTitile
        },
        2000)
    }
});
</script>
0个认可

—— 评论区 ——

昵称
邮箱
网址
取消
人生倒计时
最新评论
  • 222691913788
    222691913788
    5天前
  • 222691913788
    222691913788
    5天前
  • 97427613
    97427613
    7天前
  • 墨白
    墨白
    7天前