自我介紹
喜歡霧與海螺, 綠洲指南針駝鈴,歡迎光臨isbryan在痞客邦的小天地
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);
});