js實(shí)現(xiàn)網(wǎng)頁(yè)標(biāo)題欄閃爍提示效果實(shí)例分析
來(lái)源:易賢網(wǎng) 閱讀:1007 次 日期:2014-12-19 14:23:42
溫馨提示:易賢網(wǎng)小編為您整理了“js實(shí)現(xiàn)網(wǎng)頁(yè)標(biāo)題欄閃爍提示效果實(shí)例分析”,方便廣大網(wǎng)友查閱!

網(wǎng)頁(yè)標(biāo)題欄閃爍效果我們?cè)谝恍┝奶旃ぞ邥?huì)常看到,像現(xiàn)在流量的聊天室,下面我們就來(lái)給大家總結(jié)一款實(shí)現(xiàn)網(wǎng)頁(yè)標(biāo)題欄閃爍提示代碼,感興趣可參考一下。

公司的項(xiàng)目中用到了這個(gè)新消息提示的效果,主要用于提示用戶有新消息。具體實(shí)現(xiàn)代碼如下:

代碼如下:

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操作

}

};

調(diào)用顯示新消息提示:newMessageRemind.show();

調(diào)用取消新消息提示:newMessageRemind.clear();

看了上面代碼自己再進(jìn)行優(yōu)化一下,不管怎樣,自己能吸收學(xué)習(xí)到就好了。:)我主要是覺得他代碼里面 newMessageRemind 這字段用得太多了,看起來(lái)密密麻麻的,多不舒服啊,想著換一種小清新的方式展現(xiàn)出來(lái),于是乎就有了下面的代碼:

代碼如下:

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>

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看腳本欄目
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)