欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > 其他教程 >
其他教程

网页标题title 如何让标题闪动【新消息】

(元素模板) / 2022-07-13 15:03

如果我们要制作一个消息提醒的功能,如何让标题提示【新消息】?
元素模板为您解答
只需要加入下面JS代码

var newMessageRemind = function () {

var i = 0,

title = document.title,

loop;

 

return {

show: function () {

loop = setInterval(function () {

i++;

if ( i == 1 ) document.title = '【新消息】' + title;

if ( i == 2 ) document.title = '【   】' + title;

if ( i == 3 ) i = 0;

}, 800);

},

stop: function () {

clearInterval(loop);

document.title = title;

}

};

} ();


调用显示新消息提示:newMessageRemind.show();
调用取消新消息提示:newMessageRemind.stop();

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com