自我介紹
歡迎光臨千江水月在痞客邦的小天地,訪客請自行參觀,末學不學無術,任意寫些文章自愉,都是天馬行空,毫無實據,如夢幻泡影,請來客切勿信以為真是幸。本格因為是末學自愉之用,因此隨心情不定隨意修改增刪文章,新內容往往都增附在舊文裡,請恕不另行公告。
var scroText;
var iCount=0;
var speed = 650;
var msg ;
var s = 0;
jQuery(function($){
msg=$("title").text().split("::")[0];
var scrollTitle = function() {
s++;if (s > msg.length-1) { s = 0;}
iCount= $(".topbar__notification__counter").attr("data-counter");
if(iCount==0||iCount==undefined)
{scroText=msg;}
else
{scroText='('+iCount+') '+ msg.substr(s,msg.length-s) + ' ~ ' + msg.substr(0,s);}
document.title= scroText;
};
scrollTitle();
window.setInterval(scrollTitle , speed);
});