标题栏字幕滚动效果
状态拦动~!!
<SCRIPT language=JavaScript>
step=0
function flash_title()
{
if (step==2) {step=0}
if (step==0) {document.title='网页设计秀----cnwebshow'}
if (step==1) {document.title='网页设计秀----cnwebshow'}
step++
setTimeout("flash_title()",31);
}
flash_title()
</SCRIPT>