Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>状态栏文字闪烁特效代码</TITLE>
</HEAD>
<BODY>
<script language="JavaScript">
<!--
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);
window.onload=flash
// -->
</script>
</BODY>
</HTML>
CSS代码...
JS代码...
xxxxxxxxxx