本文实例讲述了js实现网页标题栏闪烁提示效果的方法。分享给大家供大家参考。具体分析如下:
网页标题栏闪烁效果我们在一些聊天工具会常看到,像现在流量的聊天室,下面我们就来给大家总结一款实现网页标题栏闪烁提示代码,感兴趣可参考一下。
公司的项目中用到了这个新消息提示的效果,主要用于提示用户有新消息。具体实现代码如下:
var newMessageRemind={ _step: 0, _title: document.title, _timer: null, //显示新消息提示 show:function(){ var temps = newMessageRemind._title.replace("【 】", "").replace("【新消息】", ""); newMessageRemind._timer = setTimeout(function() { newMessageRemind.show(); //这里写Cookie操作 newMessageRemind._step++; if (newMessageRemind._step == 3) { newMessageRemind._step = 1 }; if (newMessageRemind._step == 1) { document.title = "【 】" + temps }; if (newMessageRemind._step == 2) { document.title = "【新消息】" + temps }; }, 800); return [newMessageRemind._timer, newMessageRemind._title]; }, //取消新消息提示 clear: function(){ clearTimeout(newMessageRemind._timer ); document.title = newMessageRemind._title; //这里写Cookie操作 } };
调用显示新消息提示:newMessageRemind.show();
调用取消新消息提示:newMessageRemind.clear();
看了上面代码自己再进行优化一下,不管怎样,自己能吸收学习到就好了。:)我主要是觉得他代码里面 newMessageRemind 这字段用得太多了,看起来密密麻麻的,多不舒服啊,想着换一种小清新的方式展现出来,于是乎就有了下面的代码:
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; } }; } ();
是不是清新了很多呢?^_^
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title>放假啦!!!</title> </head> <body> <button id="test">stop</button> <script type="text/javascript"> 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(); document.getElementById('test').onclick = function () { newMessageRemind.stop(); }; </script> </body> </html>
继续分享一个
<script> (function() { 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>
希望本文所述对大家的javascript程序设计有所帮助。
本文向大家介绍js实现的标题栏新消息闪烁提示效果,包括了js实现的标题栏新消息闪烁提示效果的使用技巧和注意事项,需要的朋友参考一下 公司的项目中用到了这个新消息提示的效果,主要用于提示用户有新消息。具体实现代码如下: 调用显示新消息提示:newMessageRemind.show(); 调用取消新消息提示:newMessageRemind.clear(); 另:单纯的这个代码会出现这么一个问题:
本文向大家介绍JS实现消息来时让网页标题闪动效果的方法,包括了JS实现消息来时让网页标题闪动效果的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了JS实现消息来时让网页标题闪动效果的方法。分享给大家供大家参考,具体如下: 参考开心网的head-26.js 更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《JavaScript中ajax操作技巧总结》、《JavaScrip
本文向大家介绍jQuery实现新消息闪烁标题提示的方法,包括了jQuery实现新消息闪烁标题提示的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了jQuery实现新消息闪烁标题提示的方法。分享给大家供大家参考。具体如下: 该代码可实现在标题栏部位闪烁地显示提示信息。 1. jQuery插件风格代码 2. 调用方法如下: 完整实例代码点击此处本站下载。 希望本文所述对大家的jQuery程
本文向大家介绍Openlayers实现点闪烁扩散效果,包括了Openlayers实现点闪烁扩散效果的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了Openlayers实现点闪烁扩散效果的具体代码,供大家参考,具体内容如下 点闪烁样式: DOM的样式实现 在地图上添加点—采用overlay添加DOM元素 需要用到Openlayers中的overlay元素,官方对于如何使用overlay
本文向大家介绍JS+CSS实现的拖动分页效果实例,包括了JS+CSS实现的拖动分页效果实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了JS+CSS实现拖动分页效果的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的javascript程序设计有所帮助。
本文向大家介绍javascript实现导航栏分页效果,包括了javascript实现导航栏分页效果的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了js实现导航栏分页效果的具体代码,供大家参考,具体内容如下 1、结构搭建HTML代码 2、页面修饰的css样式代码 3、js代码 4、效果图 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持呐喊教程。