第二步:把如下代码加入《 body》区域中
《 body bgcolor=“#fef4d9” onLoad=“startBanner()”》
特效五:文字不停闪烁
第一步:把如下代码加入《 head》区域中
《 script language=“”》
《 !--
var yourwords = “欢迎光临!!!”;
var speed = 700;
var control = 1;
function flash()
{
if (control == 1)
{
window.status=yourwords;
control=0;
}
else
{
window.status=“”;
control=1;
}
setTimeout(“flash()”,speed);
}
// --》
《 /script》
第二步:把如下代码加入《 body》区域中
《 body bgcolor=“#fef4d9” onLoad=“flash()”》
特效六:文字来回出现
第一步:把如下代码加入《 head》区域中
《 script LANGUAGE=“Javascript”》
《 !-- Begin
var Message=“欢迎光临!!!!!”;
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place 》= Message.length) {
place=1;
window.setTimeout(“scrollOut()”,300);
} else {
place++;
window.setTimeout(“scrollIn()”,50);
}
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place 》= Message.length) {
place=1;
window.setTimeout(“scrollIn()”, 100);
} else {
place++;
window.setTimeout(“scrollOut()”, 50);
}
}
// End --》
《 /script》
第二步:把《 body》中的内容改为:
《 body bgcolor=“#fef4d9” onLoad=“scrollIn()”》
特效七:状态栏固定信息
《 body bgcolor=“#fef4d9” onmouseover=“self.status=‘欢迎光临“haoshilao.com”--http://haoshilao.com’;return”》