当前位置:网站首页>给网站增加离开页面改变网站标题效果
给网站增加离开页面改变网站标题效果
2022-08-01 14:39:00 【妍小妍】
有些网站标签停留时显示正常的网站标题,标签切换时就显示不同的标题。
实现方法很简单利用JS动态改变浏览器标题,涉及JavaScript页面元素结合时间函数动态操作。
把下面代码放入<head></head>
之间即可,其中的“有一条新消息,先森快回来吖~~”改为想要的文字就成。
<script>
document.addEventListener('visibilitychange', function () {
if (document.visibilityState == 'hidden') {
normal_title = document.title;
document.title = '有一条新消息,先森快回来吖~~';
} else document.title = normal_title;
});
</script>
压缩一下
<script>
document.addEventListener('visibilitychange',function(){if(document.visibilityState=='hidden'){normal_title=document.title;document.title='有一条新消息,先森快回来吖~~';}else{document.title=normal_title;}});
</script>
边栏推荐
- 长江欧拉生态创新中心成立,武汉数字经济再添坚实底座
- 2022-08-01日报:18张图,直观理解神经网络、流形和拓扑
- Yann LeCun开怼谷歌研究:目标传播早就有了,你们创新在哪里?
- The problem that the column becomes indexed after pd groupby and the aggregation column has no column name
- what is tail tooth feast
- qt 通用ui
- 大神们,ODPS用的是MySQL吗?
- Koreographer Professional Edition丨一款Unity音游插件教程
- 什么是闭包?
- docker部署mysql并修改其占用内存大小
猜你喜欢
ThreadLocal保存用户登录信息
沃文特生物IPO过会:年营收4.8亿 养老基金是股东
The role of the final keyword final and basic types, reference types
Gradle系列——Gradle测试,Gradle生命周期,settings.gradle说明,Gradle任务(基于Groovy文档4.0.4)day2-3
Gradle series - Gradle tests, Gradle life cycle, settings.gradle description, Gradle tasks (based on Groovy documentation 4.0.4) day2-3
只知道SQL数据库?又一国产数据库语言诞生了
魔众短链接系统 v3.9.0
Yann LeCun开怼谷歌研究:目标传播早就有了,你们创新在哪里?
【无标题】
性能测试入门指南
随机推荐
ABC260 E - At Least One(双指针)
Gradle series - Gradle tests, Gradle life cycle, settings.gradle description, Gradle tasks (based on Groovy documentation 4.0.4) day2-3
leetcode:80. 删除有序数组中的重复项 II
A Beginner's Guide to Performance Testing
牛客刷SQL--7
MySQL中的时区设置
透过现象看本质,如何针对用户做好需求分析
牛客刷SQL--5
Amperon IPO meeting: annual revenue of 500 million Tongchuang Weiye and China Mobile Innovation are shareholders
搭建ntp时间服务器(安装sql2000配置服务器失败)
HTB-Shocker
The default database main key, foreign key, and the only key index
what is tail tooth feast
关于Request复用的那点破事儿。研究明白了,给你汇报一下。
Distributed database problem (1): data partition
微信UI在线聊天源码 聊天系统PHP采用 PHP 编写的聊天软件,简直就是一个完整的迷你版微信
win10+Qt5.15.2 realizes low-power bluetooth control
datetime64[ns] converted to datetime
[Binary Tree] Path Sum II
ABC260 E - At Least One (Dual Pointer)