Alt 标签页标题 "animation"

Alt tab page title "animation"

我想“动画化”浏览器选项卡中的页面标题,使其每秒在两种状态之间交替,如下例所示:

  1. 页面标题
  2. ⭐ 页面标题

我该怎么做?

谢谢!

你可以这样做:

const star = "⭐ ";

setInterval(() => {
  if (!document.title.startsWith(star))
    document.title = star + document.title;
  else 
    document.title = document.title.replace(star, '');
}, 1000)