没什么好解释,挺有趣的。
直接甩到h5中即可,或者手动调用
更改部分是【一二三四1234测试文字TestText】
<script language="javascript"> <!-- Hide me var index_count = 0; var title_string = "一二三四1234测试文字TestText"; var title_length = title_string.length; var cmon; var kill_length = 0; function loopTheScroll() { scrollTheTitle(); if(kill_length > title_length) { clearTimeout(cmon); } kill_length++; cmon = setTimeout("loopTheScroll();",100) } function scrollTheTitle() { var doc_title = title_string.substring((title_length - index_count - 1),title_length); document.title = doc_title; index_count++; } loopTheScroll(); //--> </script>
Comments NOTHING