- 4
- 0
- 约4.56千字
- 约 6页
- 2017-12-27 发布于河南
- 举报
实现背景颜色切换
实现背景颜色切换
%@ page language=java import=java.util.* pageEncoding=GBK%
%@ include file=base.jsp %
!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN
html
head
meta http-equiv=Content-Type content=text/html; charset=gb_2312-80
title新页面 /title
/head
script language=JavaScript
!--
done = 0;
step = 4
function anim(yp,yk)
{
if(document.layers) document.layers[napis].top=yp;
else document.all[napis].style.top=yp;
if(ypyk) step = -4
if(yp60) step = 4
setTimeout(anim(+(yp+step)+,+yk+), 35);
}
function start()
{
if(done) return
done = 1;
if(navigator.appName==Netscape) {
document.napis.left=innerWidth/2 - 145;
anim(60,innerHeight - 60)
}
else {
napis.style.left=11;
anim(60,document.body.offsetHeight - 60)
}
}
//--
/script
div id=napis
style=position: absolute;top: -50;
color: #000000;font-family:宋体;font-size:9pt;
/divscript language=JavaScript
!--
setTimeout(start(),10);
//--
/script
script language=JavaScript
!-- Begin
function initArray() {
for (var i = 0; i initArray.arguments.length; i++) {
this[i] = initArray.arguments[i];
}
this.length = initArray.arguments.length;
}
var colors = new initArray(
#000000,#0000FF,#80FFFF,#80FF80,#FFFF00,#FF8000,#FF00FF,#FF0000
);
delay = 100
link = 0;
vlink = 0;
function linkDance() {
link = (link+1)%colors.length;
vlink = (vlink+1)%colors.length;
document.linkColor = colors[link];
document.vlinkColor = colors[vlink];
setTimeout(linkDance(),delay);
}
linkDance();
// End --
/script
script
function colors(c1){
this.c1 = c1;
}
a00 = new colors(FFFBD0);
a01 = new colors(FF0000);
a02 = new colors(FF8080);
a03 = new colors(FF8000);
a04 = new colors(FFFF00);
a05 = new colors(000080);
a06 = new colors(0000FF);
a07 = new colors(008000);
a08 = new colors(00FF00);
a09 = new colors(804000);
a10 = new colors(808000);
a11 = new colors(000000);
a12 = new colors(FFFFFF);
a13 = new colors(C0C0C0);
a14 = new colors(408080);
a15 = new colors(808080);
a16 = new colors(D2BF51);
a17 = new colors(44BBE8);
a18 = new colors(C97AB9);
a19 = new colors(A2C97A
原创力文档

文档评论(0)