重要提示!浏览器禁用javascript或cookie时,程序无法正常使用
超越社区——热烈欢迎朋友们光临!学习交流......
首页
|
社区
|
会员
|
搜索
|
关于论坛
|
刷新
编辑
主页
>
列表
> 正文
白云飘飘——网页特效代码
作者:
yuyin
发布时间:
2021/02/15 16:30:33
分数:
0
跟帖:
0
脚本说明:
把如下代码加入<body>
区
域中
<script language="JavaScript1.2">
<!-- Begin
var no = 20; // image number or falling rate
var speed = 2; // the lower the number the faster the image moves
var snow = new Array();
snow[0] = "bubble1.gif"
snow[1] = "bubble1.gif"
snow[2] = "bubble1.gif"
var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 1800;
if (ns4up||ns6up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
j = 0;
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name="dot"+ i +"" left="15" top="15" visibility="show"><img src=""+ snow[j] + "" border="0"></layer>");
} else {
document.write("<layer name="dot"+ i +"" left="15" top="15" visibility="show"><img src=""+ snow[j] + "" border="0"></layer>");
} } else if (ie4up||ns6up) { if (i == 0)
{
document.write("<div id="dot"+ i +"" style="POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;"><img src="" + snow[j] + "" border="0"></div>");
} else {
document.write("<div id="dot"+ i +"" style="POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;"><img src="" + snow[j] + "" border="0"></div>");
}
}
if (j == (snow.length-1)) { j = 0; } else { j += 1; }
}
function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] -= sty[i]; if (yp[i] < -50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = doc_height;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight; }
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] +
am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE_NS6() { // IE main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] -= sty[i];
if (yp[i] < -50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = doc_height;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = ns6up?window.innerWidth-5:document.body.clientWidth;
doc_height = ns6up?window.innerHeight-5:document.body.clientHeight;
}
dx[i] += stx[i];
if (ie4up){
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i];
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]);
}
}
setTimeout("snowIE_NS6()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up||ns6up) {
snowIE_NS6();
}
// End -->
</script>
网友跟帖 共0 条 [
我也要发表回复
]
浏览作者的相册
作者的其它主题
版区推荐 >>
广告区
页面载入中,载入完毕后在此显示你的权限,请稍候...
主页
- 电脑网络
程序源码
电脑技术
网络技术
信息资源
- 娱乐休闲
音乐歌曲
琴棋书画
影音视频
闲情逸致
- 文化大观园
小说故事
散文随笔
诗词歌赋
杂文评论
文化遗产
三教九流
节日文化
文化知识
- 经济大观园
管理会计
经济知识
经济管理
风险控制
金融证券
财政税收
财务会计
管理经典
财务管理
经营之道
- 地球村
地球社区
乡规村约
衣食住行
金戈铁马
知天识地
生物世界
漫漫时空
健康之道
动物家园
处世为人
国际风云
人在旅途
- 学习修养
教育启蒙
考试风云
哲学思想
语言文字
科技大观
世界大观
- 社区事务
社区公告
社区帮助
社区信息
关于论坛
管理论坛
站内搜索
加入收藏
| 版权所有 Copyright 2099 超越时空 | 9369.net |
空间
162100NewHtmlForum Version