自我介紹
我在幸福國開拓了一片土地~我是這一個國家的幸福大使見習生~ 在學習幸福的方法~
從環境這一本大課本~去實現~去尋找~ 去學習~ 所謂的快樂幸福
在這裡~我用行動在日常生活種了許多果實~或許你可以在這裡找到你所謂幸福的果實~
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);
});