在尝试手搓ncm-flac/mp3
时查看了https://chaolucky.com/blog/
博客,发现了他博客的title在不处于被浏览状态时会变化,比较有趣,因此记录下来
function ChangeTitle(text1,text2,time){
var thetitle = document.title;
document.addEventListener("visibilitychange", function () {
if (document.hidden) {
document.title = text1;
setTimeout(function(){document.title = "看不见我!看不见我!( ̄▽ ̄)/";},time);
} else {
document.title = text2;
setTimeout(function(){document.title = thetitle;},time);
}
}, false);
}
ChangeTitle("(~ ̄▽ ̄)~ 我藏好了!","哇!你发现我了(?*?*?)",2000);
原文:https://www.cnblogs.com/FatWang/p/14425754.html