SOURCE

console 命令行工具 X clear

                    
>
console
(function($) {
        var otitTxt = '不管你在不在线 秋凉了注意添加衣服,照顾好自己的身体,对自己健康负责,世界上所有的东西都不是你的、唯有身体才是自己的。其实有很多人都等着你去关心。';
        var oP = $('p1'),i = 0;
        function titMove(){
    
            
            oP.innerHTML += otitTxt.charAt(i++);
            

            if(i>otitTxt.length-1){
                return false;
            }

        		setTimeout(titMove, 300);
        }
        setTimeout(titMove,1000);

    })(function $(id){return document.getElementById(id);});
<body style="background:url(http://sandbox.runjs.cn/uploads/rs/320/o4hcxczl/hua.gif) no-repeat;">
	<p style="width:200px;text-indent:2em;font-size:12px;color:white;" id="p1"></p>
</body>