<!--
ScrollSpeed = 250; // milliseconds between scrolls
ScrollChars = 4; // chars scrolled per time period
function SetupTicker(){ 
// add space to the left of the message
msg = "       ╰☆╮  依依花园欢迎您，祝你开心快乐每一天 ╭☆╯                  ";
 
RunTicker();}

function RunTicker() {
window.setTimeout('RunTicker()',ScrollSpeed);
window.status = msg;
msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);}
SetupTicker();
<!--end-->