首页 | DV动态 | 数码产品 | 视频采编 | 网站建设 |
【收藏DV】
  最近3月排行
·赤马劫
·985、211、双一流
·许小年:碎片化信息让人变得无知,要少看手机多读书
·上了大学也没体面工作,我们是否还要上大学- 附一组数据
·许小年:浅析日本失去的30年——兼评“资产负债表衰退”
·高中英语-单词表
·常用网管软件下载,持续更新中...
装扮你的博客---和讯博客特效代码(必看)
2006/6/3 15:26:01
 

装扮你的博客---和讯博客特效代码(必看)  [引用 2006-03-20 19:46:25 | 发表者: 职场人生_亮剑]  


使用方法:(1)以下代码都可放在“常规设置”页面的“简介或公告”输入框里。保存后查看效果。(2)在“简介或公告”输入框里输入的效果会在每一页里出现,若要在文章里加效果也可以,在文章编辑状态时点右下角的虚的“Html"标签,在你要插入效果的地方粘贴代码。之后再点回“Design”的状态。查看效果,并不是所有的代码都能加到文章中。

注意:和讯博客在保存了代码后可能会显示错误,打不开博客,请大家放心,过一段时间就可以打开了。我有一次N个小时都打不开,可吓坏我了,没想到第二天就可以了。

特效一 :博客介绍栏文字滚动,可是设置为向上、向下、向左、向右。可以设置高度,滚动速度。

<MARQUEE scrollAmount=1 direction=up height=120>你的文字介绍</MARQUEE >

说明:scrollAmount=1,1就是文字滚动的速度

     direction=up ,up就是方向,down是向下,left向左,right向右。

         height=120,120是高度


特效二 :状态栏滚动文字介绍

自左向右,循环滚动。

<script>

<!--

function Helpor_net(seed)

{ var m1 = "你要显示的文字,如:站长如果依然欢迎来到成长の代价" ;

var m2 = "" ;

var msg=m1+m2;

var out = " ";

var c = 1;

var speed = 120;

if (seed > 100)

{ seed-=2;

var cmd="Helpor_net(" + seed + ")";

timerTwo=window.setTimeout(cmd,speed);}

else if (seed <= 100 && seed > 0)

{ for (c=0 ; c < seed ; c++)

{ out+=" ";}

out+=msg; seed-=2;

var cmd="Helpor_net(" + seed + ")";

window.status=out;

timerTwo=window.setTimeout(cmd,speed); }

else if (seed <= 0)

{ if (-seed < msg.length)

{

out+=msg.substring(-seed,msg.length);

seed-=2;

var cmd="Helpor_net(" + seed + ")";

window.status=out;

timerTwo=window.setTimeout(cmd,speed);}

else { window.status=" ";

timerTwo=window.setTimeout("Helpor_net(100)",speed);

}

}

}

Helpor_net(100);

-->

</script>


特效三: 状态栏文字打字机效果特效


<script language="JavaScript">

var msg = "你要显示的文字,如:站长如果依然欢迎来到成长の代价" ;

var interval = 120

var spacelen = 120;

var space10=" ";

var seq=0;

function Helpor_net() {

len = msg.length;

window.status = msg.substring(0, seq+1);

seq++;

if ( seq >= len ) {

seq = 0;

window.status = '';

window.setTimeout("Helpor_net();", interval );

}

else

window.setTimeout("Helpor_net();", interval );

}

Helpor_net();

</script>




特效四:点击即可把你的网站添加到浏览器的收藏菜单下


<span style="CURSOR: hand"

onClick="window.external.addFavorite('你的域名','你的网站名')"

title="你的网站名">收藏本站</span>



说明:

         你的域名——就是你的博客的网址,也就是首页窗口显示的地址。我的博客域名就是:http://blog.hexun.com/eran/default.aspx

         你的网站名——不一定就要写真实的名称,可以写一些吸引人的名字,总之你写什么名字,别人的收藏夹里就显示什么名字。


特效五:点击即可把你的网站设置为浏览器的起始页


<span onclick="var

strhref="/window.location.href";this.style.behavior='url(#default#homepage)';this.setHomePage('你的域名');"

style="CURSOR: hand">设为首页</span>

说明同上




特效六:浏览器的状态栏里出现一个字接一个字往左跑的欢迎语!


<script language="JavaScript">

<!--

function statusMessageObject(p,d) {

this.msg = MESSAGE

this.out = " "

this.pos = POSITION

this.delay = DELAY

this.i = 0

this.reset = clearMessage

}

function clearMessage() {

this.pos = POSITION

}

var POSITION = 100

var DELAY = 5

var MESSAGE = "你要显示的文字,如:站长如果依然欢迎来到成长の代价"

var scroll = new statusMessageObject()

function scroller() {

for (scroll.i = 0; scroll.i < scroll.pos; scroll.i++) {

scroll.out += " "

}

if (scroll.pos >= 0)

scroll.out += scroll.msg

else scroll.out =

scroll.msg.substring(-scroll.pos,scroll.msg.length)

window.status = scroll.out

scroll.out = " "

scroll.pos--

if (scroll.pos < -(scroll.msg.length)) {

scroll.reset()

}

setTimeout ('scroller()',scroll.delay)

}

function snapIn(jumpSpaces,position) {

var msg = scroll.msg

var out = ""

for (var i=0; i<position; i++)

{out += msg.charAt(i)}

for (i=1;i<jumpSpaces;i++)

{out += " "}

out += msg.charAt(position)

window.status = out

if (jumpSpaces <= 1) {

position++

if (msg.charAt(position) == ' ')

{position++ }

jumpSpaces = 100-position

} else if (jumpSpaces > 3)

{jumpSpaces *= .75}

else

{jumpSpaces--}

if (position != msg.length) {

var cmd = "snapIn(" + jumpSpaces + "," + position + ")";

scrollID = window.setTimeout(cmd,scroll.delay);

} else {

window.status=""

jumpSpaces=0

position=0

cmd = "snapIn(" + jumpSpaces + "," + position + ")";

scrollID = window.setTimeout(cmd,scroll.delay);

return false

}

return true

}

snapIn(100,0);

// -->

</script>


    

特效七 :鼠标一碰就弹出 设为首页 对话框 (烦人,建议不用)


<a href="#"

onmouseover="this.style.behavior='url(#default#homepage)';this.setHomePage('你的域名');return(false);"

style="behavior: url(#default#homepage)">设为主页</a></td>

说明同特效四




特效八 鼠标一碰就弹出收藏本站对话框(烦人,建议不用)


<a href="#"

onmouseover="javascript :window.external.AddFavorite('你的域名',

'你的网站名')" target="_self">收藏本站</a>


特效九:加入背景音乐

<EMBED src="完整的音乐地址" autostart="true" loop="5" width="0" height="0">

说明:loop="5",5——音乐播放次数,改为"-1"为永久循环。和讯博客中,当你把首页文章显示设为:摘要时,它会摘出前255个字符,所以建议使用和讯博客的朋友,把音乐的代码放在文章末尾,不然首页会播放各个页面的音乐。很乱。


特效十:google搜索栏


<!-- Search Google -->
<center>
<form method="get" action="http://www.google.com/custom" target="google_window">
<table bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">
<a href="http://www.google.com/">
<img src="http://www.google.com/logos/Logo_25wht.gif" border="0" alt="Google" align="middle"></img></a>
<br/>
<input type="text" name="q" size="20" maxlength="255" value=""></input>
<input type="submit" name="sa" value="搜索"></input>
<input type="hidden" name="client" value="pub-9597356220042692"></input>
<input type="hidden" name="forid" value="1"></input>
<input type="hidden" name="ie" value="GB2312"></input>
<input type="hidden" name="oe" value="GB2312"></input>
<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;

LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1;">

</input>
<input type="hidden" name="hl" value="zh-CN"></input>
</td></tr></table>
</form>
</center>
<!-- Search Google -->



效果同右边的google搜索框

特效十一:百度搜索栏


<iframe id="baiduframe" border="0" vspace="0" hspace="0"


marginwidth="0" marginheight="0"


framespacing="0" frameborder="0" scrolling="no"


width="200" height="30"


src="http://unstat.baidu.com/bdun.bsc?tn=dabaoku&cv=1&cid=31577&csid=102&rkcs=2&bgcr=EDEDEB&ftcr=FF0000&rk=1&bd=1&bdas=0">


</iframe>

特效十二:显示ip及地址


<SCRIPT src='http://free.2259.com/ip/ip.asp'></SCRIPT>

这个不一定好用!不推荐使用



特效十三:在页面中制作由下往上滚动的文字
<table border="0" cellspacing="2" cellpadding="2" width="158" align="center">
<tr>
<td colspan="2">
<div align="center"><marquee direction=up height=150 id=scrollArea onMouseOut=scrollArea.start()
onMouseOver=scrollArea.stop() scrollamount=2 scrolldelay=200 width=200> </div>
<p align="left"> <span class="unnamed1"><span class="ow"><span class="font2"><span class="fon">在很</span><span class="unnamed1"><span class="ow"><span class="font2"><span class="fon">久</span></span></span></span><span class="fon">很久以前<br>
你拥有我 我拥有你<br>
在很久很久以前<br>
你离开我去远空翱翔<br>
外面的世界很精彩<br>
外面的世界很无奈<br>
当你觉得外面的世界很精彩<br>
我会在这里衷心的祝福你 <br>
</span></span></span></span><span class="fon"><span class="font2"><span class="ow"><br>
<span class="font2">每当夕阳西沉的时候<br>
我总是在这里盼望你<br>
天空中虽然下着雨<br>
我依然等待你的归期<br>
外面的世界很精彩<br>
外面的世界很无奈<br>
当你觉得外面的世界很无奈<br>
我还在这里耐心的等着你 <br>
<br>
</span></span></span></span>
</td>
</tr>
</table>

另收集的代码:

14、每个时段的问候语

<center></embed></center>
<p style="COLOR: red; BACKGROUND-COLOR: white"><embed style="WIDTH: 195px; HEIGHT: 136px" src=http://www.59178.com/Twins/Twins07.swf width=195 height=136 type=application/octet-stream>
<p style="COLOR: red; BACKGROUND-COLOR: white"></p>
</embed></embed></p>



<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <td>
<div align="center"><br>
<script language="javaScript">
now = new Date(),hour = now.getHours()
if(hour < 6){document.write("凌晨好!")}
else if (hour < 9){document.write("早上好!")}
else if (hour < 12){document.write("上午好!")}
else if (hour < 14){document.write("中午好!")}
else if (hour < 17){document.write("下午好!")}
else if (hour < 19){document.write("傍晚好!")}
else if (hour < 22){document.write("晚上好!")}
else {document.write("夜里好!")}
</script>
</div>
</td></tr>
</table>

15、进入页面自动弹出欢迎致词:

<html>
<head>
</head>
<body>
</body>
<script language="vbscript">
<!--
MsgBox"欢迎来到老吴代码园!"
-->
</script>
</html>

16、漫天飞雪

<SCRIPT LANGUAGE="JavaScript1.2">
<!--
var no = 12;
var speed = 10;
var heart = "http://code.helpor.net/picture/snow.gif";
var flag;
var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;

var dx, xp, yp;
var am, stx, sty;
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
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();
amx = new Array();
amy = new Array();
stx = new Array();
sty = new Array();
flag = new Array();
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-30)+10;
yp[i] = Math.random()*doc_height;
amy[i] = 12+ Math.random()*20;
amx[i] = 10+ Math.random()*40;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
flag[i] = (Math.random()>0.5)?1:0;
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(heart+ "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(heart+ "\" border=\"0\"></layer>");
}
} else
if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(heart+ "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(heart+ "\" border=\"0\"></div>");
}
}
}

function helpor_net() {
for (i = 0; i < no; ++ i) {
if (yp[i] > doc_height-50) {
xp[i] = 10+ Math.random()*(doc_width-amx[i]-30);
yp[i] = 0;
flag[i]=(Math.random()<0.5)?1:0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
if (flag[i])
dx[i] += stx[i];
else
dx[i] -= stx[i];
if (Math.abs(dx[i]) > Math.PI) {
yp[i]+=Math.abs(amy[i]*dx[i]);
xp[i]+=amx[i]*dx[i];
dx[i]=0;
flag[i]=!flag[i];
}
document.layers["dot"+i].top = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));
document.layers["dot"+i].left = xp[i] + amx[i]*dx[i];

}
setTimeout("helpor_net()", speed);
}

function www_helpor_net() {
for (i = 0; i < no; ++ i) {
if (yp[i] > doc_height-50) {
xp[i] = 10+ Math.random()*(doc_width-amx[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
flag[i]=(Math.random()<0.5)?1:0;
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
if (flag[i])
dx[i] += stx[i];
else
dx[i] -= stx[i];
if (Math.abs(dx[i]) > Math.PI) {
yp[i]+=Math.abs(amy[i]*dx[i]);
xp[i]+=amx[i]*dx[i];
dx[i]=0;
flag[i]=!flag[i];
}

document.all["dot"+i].style.pixelTop = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));
document.all["dot"+i].style.pixelLeft = xp[i] + amx[i]*dx[i];
}
setTimeout("www_helpor_net()", speed);
}

if (ns4up) {
helpor_net();
} else if (ie4up) {
www_helpor_net();
}
//-->
</script>

17、更多代码:





天上飞花代码

<CENTER>

<EMBED style="Z-INDEX: 3; LEFT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 0px; HEIGHT: 1800px" align=right src=http://oyja.51.net/flash/sdjhh.swf type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED></CENTER>




天上飞紫玫瑰代码

<EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://bbs.flasher123.com/UploadFile/2004-9/20049120533895073.swf width=500 height=1500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://wanruo.jahee.com/jpsc/flash2/01.swf width=500 height=1500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED>






红心向上飞舞加礼花

</EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 3000px" align=right src=http://bbs.flasher123.com/UploadFile/2004-5/20045912435828355.swf width=500 height=3000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 600px; HEIGHT: 3000px" align=right src=http://bbs.flasher123.com/UploadFile/2004-5/20045912435828355.swf width=500 height=3000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 50px; WIDTH: 350px; POSITION: absolute; TOP: 1100px; HEIGHT: 1000px" align=left src=http://bbs.flasher123.com/UploadFile/2004-9/200492417253374840.swf width=300 height=0000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 400px; WIDTH: 300px; POSITION: absolute; TOP: 1600px; HEIGHT: 1000px" align=left src=http://bbs.flasher123.com/UploadFile/2004-5/20045912435828355.swf width=500 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 300px; WIDTH: 500px; POSITION: absolute; TOP: 2100px; HEIGHT: 1000px" align=left src=http://imgfree.21cn.com/free/flash/61.swf width=200 height=0000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <BR><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 2600px; HEIGHT: 3000px" align=right src=http://bbs.flasher123.com/UploadFile/2004-5/20045912435828355.swf width=500 height=3000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 300px; WIDTH: 500px; POSITION: absolute; TOP: 3100px; HEIGHT: 1000px" align=left src=http://imgfree.21cn.com/free/flash/61.swf width=200 height=0000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <BR><EMBED style="LEFT: 400px; WIDTH: 300px; POSITION: absolute; TOP: 3600px; HEIGHT: 1000px" align=left src=http://bbs.flasher123.com/UploadFile/2004-5/20045912435828355.swf width=500 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 300px; WIDTH: 500px; POSITION: absolute; TOP: 4100px; HEIGHT: 1000px" align=left src=http://imgfree.21cn.com/free/flash/61.swf width=200 height=0000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> </CENTER><EMBED style="LEFT: 300px; WIDTH: 500px; POSITION: absolute; TOP: 4600px; HEIGHT: 1000px" align=left src=http://imgfree.21cn.com/free/flash/61.swf width=200 height=0000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <BR><EMBED style="LEFT: 400px; WIDTH: 300px; POSITION: absolute; TOP: 5100px; HEIGHT: 1000px" align=left src=http://bbs.flasher123.com/UploadFile/2004-5/20045912435828355.swf width=500 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 300px; WIDTH: 500px; POSITION: absolute; TOP: 5600px; HEIGHT: 1000px" align=left src=http://imgfree.21cn.com/free/flash/61.swf width=200 height=0000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <BR><BR>
<CENTER></CENTER><BR></DIV>
<P></P>

花瓣雨

<EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://wanruo.jahee.com/jpsc/flash2/053.swf width=500 height=1500 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED>
红心

<EMBED pluginspage=http://www.macromedia.com/go/getflashplayer src=http://www.pconline.com.cn/pcedu/carton/mtv/10306/flash/030612liangzhu.swf width=0 height=0 type=application/x-shockwave-flash wmode="transparent" quality="high"></EMBED> <EMBED style="LEFT: 50px; WIDTH: 650px; POSITION: absolute; TOP: 100px; HEIGHT: 1200px" align=right src=http://my.e-yu.cn/cxq/sc/003heart.swf width=500 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED>


小风吹

<EMBED style="LEFT: 4px; WIDTH: 1000px; POSITION: absolute; TOP: 6527px; HEIGHT: 600px" align=right src=http://hlm.nease.net/swf/red/cloud.swf width=906 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: -4px; WIDTH: 1000px; POSITION: absolute; TOP: 5554px; HEIGHT: 600px" align=right src=http://hlm.nease.net/swf/red/cloud.swf width=967 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 450px; HEIGHT: 600px" align=right src=http://hlm.nease.net/swf/red/cloud.swf width=909 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: -289px; WIDTH: 1000px; POSITION: absolute; TOP: 4960px; HEIGHT: 600px" align=right src=http://hlm.nease.net/swf/red/cloud.swf width=1203 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;>

大柳树叶子特效

<EMBED style="LEFT: 50px; WIDTH: 1150px; POSITION: absolute; TOP: 10px; HEIGHT: 1000px" align=right src=http://hlm.nease.net/swf/red/liu.swf width=500 height=1500 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED


大雪花特效

<EMBED style="LEFT: 50px; WIDTH: 700px; POSITION: absolute; TOP: 80px; HEIGHT: 1200px" align=center src=http://lain1978.com/collection/flash/005.swf width=650 height=1200 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED>


黄色飞花特效

<EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://imgfree.21cn.com/free/flash/101.swf width=500 height=1500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://imgfree.21cn.com/free/flash/101.swf width=500 height=1500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://imgfree.21cn.com/free/flash/101.swf width=500 height=1500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://imgfree.21cn.com/free/flash/101.swf width=500 height=1500 type=application/x-shockwave-flash wmode="transparent" quality="high" ;;></EMBED>


红玫瑰散花

<CENTER><EMBED src=http://www.kingxl.com/mp3/lovelovelove.mp3 width=0 height=0 type=audio/x-pn-realaudio-plugin controls="ControlPanel" loop="true" autostart="true" volume="100" Initfn="load-types" mime-types="mime.types"></CENTER>
<CENTER><EMBED style="RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 3000px" align=right src=http://favorites2003.vicp.net/picture/cl/2.swf type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 3000px" align=right src=http://bbs.flasher123.com/UploadFile/2004-5/20045912435828355.swf width=500 height=3000 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED><EMBED style="RIGHT: 280px; WIDTH: 600px; POSITION: absolute; TOP: 0px; HEIGHT: 1600px" align=right src=http://favorites2003.vicp.net/picture/cl/2.swf type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 50px; WIDTH: 350px; POSITION: absolute; TOP: 3300px; HEIGHT: 1000px" align=left src=http://bbs.flasher123.com/UploadFile/2004-9/200492417253374840.swf width=300 height=0000 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED><EMBED style="LEFT: 400px; WIDTH: 300px; POSITION: absolute; TOP: 4000px; HEIGHT: 1000px" align=left src=http://bbs.flasher123.com/UploadFile/2004-5/20045912435828355.swf width=500 height=1000 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED><EMBED style="LEFT: 300px; WIDTH: 500px; POSITION: absolute; TOP: 5000px; HEIGHT: 1000px" align=left src=http://imgfree.21cn.com/free/flash/61.swf width=200 height=0000 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED> </CENTER></DIV>


散花

<EMBED style="RIGHT: 280px; WIDTH: 1000px; POSITION: absolute; TOP: 2500px; HEIGHT: 1600px" align=right src=http://bbs.flasher123.com/UploadFile/2004-9/20049120533895073.swf type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED>


向下飘落的玫瑰花和向上飘舞的红心

</B><BR><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://bbs.flasher123.com/UploadFile/2004-9/20049120533895073.swf width=500 height=1500 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1500px" align=right src=http://wanruo.jahee.com/jpsc/flash2/01.swf width=500 height=1500 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><BR></DIV>
<P></P>

心心相印

<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 229px; WIDTH: 2px; POSITION: absolute; TOP: 116px; HEIGHT: 53px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 149px; WIDTH: 43px; POSITION: absolute; TOP: 81px; HEIGHT: 63px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 423px; WIDTH: 2px; POSITION: absolute; TOP: 218px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 103px; WIDTH: 2px; POSITION: absolute; TOP: 85px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 65px; WIDTH: 2px; POSITION: absolute; TOP: 114px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 40px; WIDTH: 2px; POSITION: absolute; TOP: 167px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 34px; WIDTH: 2px; POSITION: absolute; TOP: 218px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 287px; WIDTH: 2px; POSITION: absolute; TOP: 400px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer5 style="Z-INDEX: 2; LEFT: 392px; WIDTH: 2px; POSITION: absolute; TOP: 114px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 311px; WIDTH: 2px; POSITION: absolute; TOP: 81px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 192px; WIDTH: 2px; POSITION: absolute; TOP: 92px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 76px; WIDTH: 2px; POSITION: absolute; TOP: 325px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 406px; WIDTH: 2px; POSITION: absolute; TOP: 271px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 331px; WIDTH: 2px; POSITION: absolute; TOP: 367px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 229px; WIDTH: 2px; POSITION: absolute; TOP: 414px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 126px; WIDTH: 2px; POSITION: absolute; TOP: 367px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 51px; WIDTH: 2px; POSITION: absolute; TOP: 271px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 171px; WIDTH: 2px; POSITION: absolute; TOP: 400px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 381px; WIDTH: 49px; POSITION: absolute; TOP: 325px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 417px; WIDTH: 2px; POSITION: absolute; TOP: 167px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 354px; WIDTH: 2px; POSITION: absolute; TOP: 86px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 266px; WIDTH: 2px; POSITION: absolute; TOP: 92px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer100 style="Z-INDEX: 3; LEFT: 130px; WIDTH: 124px; POSITION: absolute; TOP: 105px; HEIGHT: 39px"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 429px; WIDTH: 2px; POSITION: absolute; TOP: 116px; HEIGHT: 53px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 349px; WIDTH: 43px; POSITION: absolute; TOP: 81px; HEIGHT: 63px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 623px; WIDTH: 2px; POSITION: absolute; TOP: 218px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 303px; WIDTH: 2px; POSITION: absolute; TOP: 85px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 265px; WIDTH: 2px; POSITION: absolute; TOP: 114px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 240px; WIDTH: 2px; POSITION: absolute; TOP: 167px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 234px; WIDTH: 2px; POSITION: absolute; TOP: 218px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 487px; WIDTH: 2px; POSITION: absolute; TOP: 400px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer5 style="Z-INDEX: 2; LEFT: 592px; WIDTH: 2px; POSITION: absolute; TOP: 114px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 511px; WIDTH: 2px; POSITION: absolute; TOP: 81px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 392px; WIDTH: 2px; POSITION: absolute; TOP: 92px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 276px; WIDTH: 2px; POSITION: absolute; TOP: 325px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 606px; WIDTH: 2px; POSITION: absolute; TOP: 271px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 531px; WIDTH: 2px; POSITION: absolute; TOP: 367px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 429px; WIDTH: 2px; POSITION: absolute; TOP: 414px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 326px; WIDTH: 2px; POSITION: absolute; TOP: 367px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 251px; WIDTH: 2px; POSITION: absolute; TOP: 271px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 371px; WIDTH: 2px; POSITION: absolute; TOP: 400px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 581px; WIDTH: 49px; POSITION: absolute; TOP: 325px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 617px; WIDTH: 2px; POSITION: absolute; TOP: 167px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 554px; WIDTH: 2px; POSITION: absolute; TOP: 86px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer2 style="Z-INDEX: 2; LEFT: 466px; WIDTH: 2px; POSITION: absolute; TOP: 92px; HEIGHT: 2px"><IMG src="http://img.hnol.net/theimg/2004-09-4/1/200494141101117.gif"></DIV>
<DIV id=Layer100 style="Z-INDEX: 3; LEFT: 330px; WIDTH: 124px; POSITION: absolute; TOP: 1055px; HEIGHT: 39px"></DIV>
<DIV></DIV>


天上散叶:

<CENTER><EMBED style="RIGHT: 300px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 600px" align=right src=http://mailimg-fs.hanmail.net/fl/effect/19/e-fall2.swf type=application/octet-stream wmode="transparent" quality="high"></EMBED></CENTER>
<DIV></DIV>

泡泡和金鱼:

<EMBED style="LEFT: 50px; WIDTH: 750px; POSITION: absolute; TOP: 2000px; HEIGHT: 1000px" align=right src=http://my.e-yu.cn/cxq/sc/005shuizhu_1.swf width=600 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 50px; WIDTH: 750px; POSITION: absolute; TOP: 2000px; HEIGHT: 3000px" align=right src=http://imgfree.21cn.com/free/flash//17.swf width=600 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 50px; WIDTH: 750px; POSITION: absolute; TOP: 100px; HEIGHT: 1000px" align=right src=http://my.e-yu.cn/cxq/sc/005shuizhu_1.swf width=600 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 50px; WIDTH: 750px; POSITION: absolute; TOP: 100px; HEIGHT: 1000px" align=right src=http://imgfree.21cn.com/free/flash//17.swf width=600 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 50px; WIDTH: 750px; POSITION: absolute; TOP: 1000px; HEIGHT: 1000px" align=right src=http://my.e-yu.cn/cxq/sc/005shuizhu_1.swf width=600 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 50px; WIDTH: 750px; POSITION: absolute; TOP: 1000px; HEIGHT: 1000px" align=right src=http://imgfree.21cn.com/free/flash//17.swf width=600 height=1000 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED>
<DIV></DIV>

可爱的小娃娃:

<EMBED src=http://211.155.23.192/~pilu/hbdx2002/mp3/10.mp3 width=0 height=0 type=audio/mpeg loop="true" autostart="true" panel="0"></EMBED> <BR><BR>
<CENTER><EMBED style="RIGHT: 300px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 600px" align=right src=http://www.pusongling.name/bingwu/003heart_2.swf type=application/octet-stream wmode="transparent" quality="high"></EMBED></CENTER>
<DIV></DIV><BR><BR><BR>
<DIV></DIV><BR><BR></DIV>
<P></P>


天上散绿叶:

<EMBED style="RIGHT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 0px; HEIGHT: 1600px" align=right src=http://imgfree.21cn.com/free/flash/59.swf type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="RIGHT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 0px; HEIGHT: 1600px" align=right src=http://imgfree.21cn.com/free/flash/131.swf type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="RIGHT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 0px; HEIGHT: 1600px" align=right src=http://imgfree.21cn.com/free/flash/131.swf type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED></DIV>
<P></P>

红色枫叶飘

<IMG src="http://bbs.263.net/forumData/41/2528775_1.gif">
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 100%"><EMBED height=600 src=http://mailimg-fs.hanmail.net/fl/effect/19/e-fall2.swf type=application/x-shockwave-flash width=800 quality="high" wmode="transparent"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 256%"><EMBED height=600 src=http://mailimg-fs.hanmail.net/fl/effect/19/e-fall2.swf type=application/x-shockwave-flash width=800 quality="high" wmode="transparent"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 326%"><EMBED height=600 src=http://mailimg-fs.hanmail.net/fl/effect/19/e-fall2.swf type=application/x-shockwave-flash width=800 wmode="transparent" quality="high"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 426%"><EMBED height=600 src=http://mailimg-fs.hanmail.net/fl/effect/19/e-fall2.swf type=application/x-shockwave-flash width=800 wmode="transparent" quality="high"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 586%"><EMBED height=600 src=http://mailimg-fs.hanmail.net/fl/effect/19/e-fall2.swf type=application/x-shockwave-flash width=800 quality="high" wmode="transparent"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 626%"><EMBED height=600 src=http://mailimg-fs.hanmail.net/fl/effect/19/e-fall2.swf type=application/x-shockwave-flash width=800 quality="high" wmode="transparent"></EMBED></DIV><EMBED align=right height=400 src=http://mailimg-fs.hanmail.net/fl/effect/19/e-fall2.swf style="HEIGHT: 300px; LEFT: 250px; POSITION: absolute; TOP: 300px; WIDTH: 400px" type=application/octet-stream width=400 ;; quality="high" wmode="transparent"></EMBED><BR><BR>


蓝色蝴蝶飞

<IMG src="http://bbs.263.net/forumData/41/2528775_1.gif">
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 100%"><EMBED height=600 src=http://mtv.vicn.com/upload/2004482345353317.swf type=application/x-shockwave-flash width=800 quality="high" wmode="transparent"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 256%"><EMBED height=600 src=http://mtv.vicn.com/upload/2004482345353317.swf type=application/x-shockwave-flash width=800 quality="high" wmode="transparent"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 326%"><EMBED height=600 src=http://mtv.vicn.com/upload/2004482345353317.swf type=application/x-shockwave-flash width=800 wmode="transparent" quality="high"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 426%"><EMBED height=600 src=http://mtv.vicn.com/upload/2004482345353317.swf type=application/x-shockwave-flash width=800 wmode="transparent" quality="high"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 586%"><EMBED height=600 src=http://mtv.vicn.com/upload/2004482345353317.swf type=application/x-shockwave-flash width=800 quality="high" wmode="transparent"></EMBED></DIV>
<DIV style="LEFT: 1%; POSITION: absolute; TOP: 626%"><EMBED height=600 src=http://mtv.vicn.com/upload/2004482345353317.swf type=application/x-shockwave-flash width=800 quality="high" wmode="transparent"></EMBED></DIV><EMBED align=right height=400 src=http://mtv.vicn.com/upload/2004482345353317.swf style="HEIGHT: 300px; LEFT: 250px; POSITION: absolute; TOP: 300px; WIDTH: 400px" type=application/octet-stream width=400 ;; quality="high" wmode="transparent"></EMBED><BR><BR>

带一些紫色的雾

<EMBED height=0 src=http://image2.sina.com.cn/dongman/f/2003-06-09/3_55-4-248-235_20030609113647.swf type=application/x-shockwave-flash width=0> </CENTER><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 4px; POSITION: absolute; TOP: 6527px; WIDTH: 1000px" type=application/octet-stream width=906 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: -4px; POSITION: absolute; TOP: 5554px; WIDTH: 1000px" type=application/octet-stream width=967 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 0px; POSITION: absolute; TOP: 450px; WIDTH: 1000px" type=application/octet-stream width=909 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: -289px; POSITION: absolute; TOP: 4960px; WIDTH: 1000px" type=application/octet-stream width=1203 wmode="transparent" quality="high" ;;> <BR>
<P><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 1px; POSITION: absolute; TOP: 4585px; WIDTH: 1000px" type=application/octet-stream width=909 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 0px; POSITION: absolute; TOP: 3201px; WIDTH: 1000px" type=application/octet-stream width=906 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 1px; POSITION: absolute; TOP: 3681px; WIDTH: 1000px" type=application/octet-stream width=907 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 1px; POSITION: absolute; TOP: 2249px; WIDTH: 1000px" type=application/octet-stream width=910 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 4px; POSITION: absolute; TOP: 2739px; WIDTH: 1000px" type=application/octet-stream width=901 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 5px; POSITION: absolute; TOP: 4111px; WIDTH: 1000px" type=application/octet-stream width=905 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 1px; POSITION: absolute; TOP: 1786px; WIDTH: 1000px" type=application/octet-stream width=911 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 4px; POSITION: absolute; TOP: 1322px; WIDTH: 1000px" type=application/octet-stream width=903 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 0px; POSITION: absolute; TOP: 851px; WIDTH: 1000px" type=application/octet-stream width=918 wmode="transparent" quality="high" ;;><EMBED align=right height=452 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: 5px; POSITION: absolute; TOP: 6946px; WIDTH: 1000px" type=application/octet-stream width=901 wmode="transparent" quality="high" ;;><EMBED align=right height=442 src=http://hlm.nease.net/swf/red/cloud.swf style="HEIGHT: 600px; LEFT: -12px; POSITION: absolute; TOP: 5190px; WIDTH: 1000px" type=application/octet-stream width=922 wmode="transparent" quality="high" ;;></P>

水滴代码

<EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 500px" align=right src=http://mtv.vicn.com/upload/2004482314621131.swf width=200 height=500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 600px; HEIGHT: 600px" align=right src=http://mtv.vicn.com/upload/2004482314621131.swf width=700 height=600 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 1100px; HEIGHT: 500px" align=right src=http://mtv.vicn.com/upload/2004482314621131.swf width=500 height=500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 1600px; HEIGHT: 600px" align=right src=http://mtv.vicn.com/upload/2004482314621131.swf width=500 height=600 type=application/octet-stream ;; quality="high" wmode="transparent"></EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 2100px; HEIGHT: 500px" align=right src=http://mtv.vicn.com/upload/2004482314621131.swf width=500 height=500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 2600px; HEIGHT: 500px" align=right src=http://mtv.vicn.com/upload/2004482314621131.swf width=500 height=500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 3100px; HEIGHT: 500px" align=right src=http://mtv.vicn.com/upload/2004482314621131.swf width=500 height=500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED>

鱼儿水滴:

<EMBED style="LEFT: 50px; WIDTH: 300px; POSITION: absolute; TOP: 60px; HEIGHT: 300px" src=http://www.gxblk.com/flash/water.swf width=300 height=300 type=application/octet-stream wmode="transparent" quality="high"></EMBED> <EMBED style="LEFT: 50px; WIDTH: 300px; POSITION: absolute; TOP: 60px; HEIGHT: 300px" src=http://www.gxblk.com/flash/jinyu.swf width=300 height=300 type=application/octet-stream wmode="transparent" quality="high"></EMBED><EMBED style="LEFT: 300px; WIDTH: 300px; POSITION: absolute; TOP: 10px; HEIGHT: 300px" src=http://www.gxblk.com/flash/water.swf width=300 height=300 type=application/octet-stream quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 300px; WIDTH: 300px; POSITION: absolute; TOP: 10px; HEIGHT: 300px" src=http://www.gxblk.com/flash/jinyu.swf width=300 height=300 type=application/octet-stream quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 600px; WIDTH: 300px; POSITION: absolute; TOP: 160px; HEIGHT: 300px" src=http://www.gxblk.com/flash/water.swf width=300 height=300 type=application/octet-stream quality="high" wmode="transparent"></EMBED><EMBED style="LEFT: 600px; WIDTH: 300px; POSITION: absolute; TOP: 160px; HEIGHT: 300px" src=http://www.gxblk.com/flash/jinyu.swf width=300 height=300 type=application/octet-stream quality="high" wmode="transparent"></EMBED>

彩条

<CENTER><EMBED style="RIGHT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 280px; HEIGHT: 600px" align=right src=http://www.flash8.net/bbs/UploadFile/2004-8/2004810103124677.swf type=application/octet-stream wmode="transparent" quality="high"></CENTER></EMBED>


花儿往下掉:

<P align=center></P><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 0px; HEIGHT: 3000px" align=right src=http://oyja.51.net/flash/mhh.swf width=400 height=3000 type=application/octet-stream ;; quality="high" wmode="transparent"> <BR><BR>
<DIV></DIV>

鲜花掉掉:

<CENTER><EMBED style="Z-INDEX: 3; LEFT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1600px" align=right src=http://oyja.51.net/flash/sdjhh.swf type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED></CENTER>





圣诞马车

<P align=center><EMBED src=http://www.tdzx.net/Song/Jingle_Bells.mp3 width=0 height=0 type=audio/x-pn-realaudio-plugin controls="ControlPanel" loop="true" autostart="true" volume="100" Initfn="load" mime-types="mime.types" types> <EMBED style="LEFT: 100px; WIDTH: 950px; POSITION: absolute; TOP: 300px; HEIGHT: 500px" align=right src=http://yr2004.51.net/flash/sd1.swf width=550 height=1500 type=application/octet-stream ;; quality="high" wmode="transparent"> <EMBED style="LEFT: 100px; WIDTH: 950px; POSITION: absolute; TOP: 1100px; HEIGHT: 500px" align=right src=http://yr2004.51.net/flash/sd2.swf width=550 height=1500 type=application/octet-stream ;; quality="high" wmode="transparent"> <EMBED style="LEFT: 100px; WIDTH: 950px; POSITION: absolute; TOP: 1900px; HEIGHT: 500px" align=right src=http://yr2004.51.net/flash/sd1.swf width=550 height=1500 type=application/octet-stream ;; quality="high" wmode="transparent"> <EMBED style="LEFT: 100px; WIDTH: 950px; POSITION: absolute; TOP: 2700px; HEIGHT: 500px" align=right src=http://yr2004.51.net/flash/sd2.swf width=550 height=1500 type=application/octet-stream ;; quality="high" wmode="transparent"> </P>
<DIV></DIV><BR><BR><BR><BR><BR><BR>
<DIV></DIV><BR><BR><BR><BR>


跳动的青蛙加雨滴:
<EMBED src=http://image2.sina.com.cn/dongman/f/2003-06-09/3_55-4-248-235_20030609113647.swfwidth=0 height=0 type=application/x-shockwave-flash> </CENTER><EMBED style="LEFT: 4px; WIDTH: 1000px; POSITION: absolute; TOP: 6527px; HEIGHT: 600px" align=right src=http://wanruo.jahee.com/jpsc/flash/60.swf width=906 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: -4px; WIDTH: 1000px; POSITION: absolute; TOP: 5554px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=967 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 450px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=909 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: -289px; WIDTH: 1000px; POSITION: absolute; TOP: 4960px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=1203 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;> <BR>
<P><EMBED style="LEFT: 1px; WIDTH: 1000px; POSITION: absolute; TOP: 4585px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=909 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 3201px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=906 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 1px; WIDTH: 1000px; POSITION: absolute; TOP: 3681px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=907 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 1px; WIDTH: 1000px; POSITION: absolute; TOP: 2249px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=910 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 4px; WIDTH: 1000px; POSITION: absolute; TOP: 2739px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=901 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 5px; WIDTH: 1000px; POSITION: absolute; TOP: 4111px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=905 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 1px; WIDTH: 1000px; POSITION: absolute; TOP: 1786px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=911 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 4px; WIDTH: 1000px; POSITION: absolute; TOP: 1322px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=903 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 0px; WIDTH: 1000px; POSITION: absolute; TOP: 851px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=918 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: 5px; WIDTH: 1000px; POSITION: absolute; TOP: 6946px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=901 height=452 type=application/octet-stream wmode="transparent" quality="high" ;;><EMBED style="LEFT: -12px; WIDTH: 1000px; POSITION: absolute; TOP: 5190px; HEIGHT: 600px" align=right src=http://imgfree.21cn.com/free/flash/8.swf width=922 height=442 type=application/octet-stream wmode="transparent" quality="high" ;;>

冰淇淋:

<EMBED style="Z-INDEX: 3; LEFT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1600px" align=right src=http://imgfree.21cn.com/free/flash/53.swf type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED>


向上飞的彩色气球:

<EMBED style="LEFT: 55px; POSITION: absolute; TOP: 88px" align=left src=http://bbs.sinabz.com/UploadFile/2004-9/2004928235916728.swf width=800 height=900 type=application/octet-stream ;; quality="high" wmode="transparent">

1. 一款非常简单漂亮的时钟. .

codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="130" width="130" border="0" classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" VIEWASTEXT>
2. 一款非常时尚高贵的时钟..

http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 height=130 width=130>
    
http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="32" height="32">

3. 几款适合小女生的浪漫时钟 ( 动动脑筋,实现8种时钟的愿望 )
http://www.59178.com/Twins/Twins07.swf style="HEIGHT: 130px; WIDTH: 144px" type=application/octet-stream width=144>
上面的只是一种的代码,怎么实现8种呢?其实很简单,只要将上面代码中flash地址中的“07”改为01到08就可以实现8种flash,都是twins的!
大家快选择你喜欢的时钟,加入到博客介绍里



再加上几个:
下雨了

<style>
.drop { position: absolute; width: 10; filter: flipV(), flipH(); font-size: 40; color: #999999 }
</style>
<script language="javascript">

snow = false;  // false-rain; true-snow
snowsym = " ´ " //These are the symbols for each
rainsym = "´  " //You can put images here.
howmany = 20 //How many drops/snowflakes?

/**************Do not need to change anything below***********/
if(snow){sym = snowsym; speed=1; angle=90; drops=howmany}
else{sym = rainsym; speed=1250; drops=howmany; angle=160}
movex = -speed/angle; movey = speed; count = 0;

function moverain(){
for(move = 0; move < drops; move++){
xx[move]+=movex; yy[move]+=mv[move];
hmm = Math.round(Math.random()*1);
if(xx[move] < 0){xx[move] = maxx+10;}
if(yy[move] > maxy){yy[move] = 10;}
drop[move].left = xx[move]
drop[move].top = yy[move]+document.body.scrollTop;
}setTimeout('moverain()','100')}

</script>
<script language="javascript">

if (document.all){
drop = new Array(); xx = new Array(); yy = new Array(); mv = new Array()
ly = "document.all[\'"; st = "\'].style"
for(make = 0; make < drops; make++){
document.write('<div id="drop'+make+'" class=drop>'+sym+'</div>');
drop[make] = eval(ly+'drop'+make+st);
maxx = document.body.clientWidth-1
maxy = document.body.clientHeight-0
xx[make] = Math.random()*maxx;
yy[make] = -100-Math.random()*maxy;
drop[make].left = xx[make]
drop[make].top = yy[make]
mv[make] = (Math.random()*5)+speed/16;
drop[make].fontSize = (Math.random()*10)+20;
if(snow){col = 'white'}else{col = '#ffffff'}
drop[make].color = col;
}
window.onload=moverain
}
</script>

===================================================================

===================================================================

环绕鼠标飞行的星星

将下面的代码加入<head></head>中
<script language="JavaScript">
<!--

//改变下面的颜色代码和图形环绕的半径
var a_Colour='ff0000';
var b_Colour='ffffff';
var c_Colour='0000ff';
var Size=50;
//Alter nothing below !!

var YDummy=new Array(),XDummy=new
//改变下面的STEP后面的数值变换图形飞行的速度
Array(),xpos=0,ypos=0,ThisStep=0;step=0.2;
if (document.layers){
window.captureEvents(Event.MOUSEMOVE);
function nsMouse(evnt){
xpos = window.pageYOffset+evnt.pageX+6;
ypos = window.pageYOffset+evnt.pageY+16;
}
window.onMouseMove = nsMouse;
}
else if (document.all)
{
function ieMouse(){
xpos = document.body.scrollLeft+event.x+6;
ypos = document.body.scrollTop+event.y+16;
}
document.onmousemove = ieMouse;
}

function swirl(){
for (i = 0; i < 3; i++)
{
YDummy[i]=ypos+Size*Math.cos(ThisStep+i*2)*Math.sin((ThisStep+i*25)/2);
XDummy[i]=xpos+Size*Math.sin(ThisStep+i*2)*Math.sin((ThisStep+i*25)/2)*Math.sin(ThisStep/4);
}
ThisStep+=step;
setTimeout('swirl()',10);
}

var amount=10;
if (document.layers){
for (i = 0; i < amount; i++)
{
document.write('<layer name=nsa'+i+' top=0 left=0 width='+i/2+' height='+i/2+' bgcolor='+a_Colour+'></layer>');
document.write('<layer name=nsb'+i+' top=0 left=0 width='+i/2+' height='+i/2+' bgcolor='+b_Colour+'></layer>');
document.write('<layer name=nsc'+i+' top=0 left=0 width='+i/2+' height='+i/2+' bgcolor='+c_Colour+'></layer>');
}
}
else if (document.all){
document.write('<div id="ODiv" style="position:absolute;top:0px;left:0px">'
+'<div id="IDiv" style="position:relative">');
for (i = 0; i < amount; i++)
{
document.write('<div id=x style="position:absolute;top:0px;left:0px;width:'+i/2+';height:'+i/2+';background:'+a_Colour+';font-size:'+i/2+'"></div>');
document.write('<div id=y style="position:absolute;top:0px;left:0px;width:'+i/2+';height:'+i/2+';background:'+b_Colour+';font-size:'+i/2+'"></div>');
document.write('<div id=z style="position:absolute;top:0px;left:0px;width:'+i/2+';height:'+i/2+';background:'+c_Colour+';font-size:'+i/2+'"></div>');
}
document.write('</div></div>');
}
function prepos(){
var ntscp=document.layers;
var msie=document.all;
if (document.layers){
for (i = 0; i < amount; i++)
{
if (i < amount-1)
{
ntscp['nsa'+i].top=ntscp['nsa'+(i+1)].top;ntscp['nsa'+i].left=ntscp['nsa'+(i+1)].left;
ntscp['nsb'+i].top=ntscp['nsb'+(i+1)].top;ntscp['nsb'+i].left=ntscp['nsb'+(i+1)].left;
ntscp['nsc'+i].top=ntscp['nsc'+(i+1)].top;ntscp['nsc'+i].left=ntscp['nsc'+(i+1)].left;
}
else
{
ntscp['nsa'+i].top=YDummy[0];ntscp['nsa'+i].left=XDummy[0];
ntscp['nsb'+i].top=YDummy[1];ntscp['nsb'+i].left=XDummy[1];
ntscp['nsc'+i].top=YDummy[2];ntscp['nsc'+i].left=XDummy[2];
}
}
}
else if (document.all){
for (i = 0; i < amount; i++)
{
if (i < amount-1)
{
msie.x[i].style.top=msie.x[i+1].style.top;msie.x[i].style.left=msie.x[i+1].style.left;
msie.y[i].style.top=msie.y[i+1].style.top;msie.y[i].style.left=msie.y[i+1].style.left;
msie.z[i].style.top=msie.z[i+1].style.top;msie.z[i].style.left=msie.z[i+1].style.left;
}
else
{
msie.x[i].style.top=YDummy[0];msie.x[i].style.left=XDummy[0];
msie.y[i].style.top=YDummy[1];msie.y[i].style.left=XDummy[1];
msie.z[i].style.top=YDummy[2];msie.z[i].style.left=XDummy[2];
}
}
}
setTimeout("prepos()",10);
}
function Start(){
swirl(),prepos()
}
window.onload=Start;
// -->
</script>


====================================================================

====================================================================

漫天飞雪网页特效代码

<SCRIPT LANGUAGE="JavaScript1.2">
<!--
var no = 12;
var speed = 10;
var heart = "http://code.helpor.net/picture/snow.gif";
var flag;
var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;

var dx, xp, yp;
var am, stx, sty;
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
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();
amx = new Array();
amy = new Array();
stx = new Array();
sty = new Array();
flag = new Array();
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-30)+10;
yp[i] = Math.random()*doc_height;
amy[i] = 12+ Math.random()*20;
amx[i] = 10+ Math.random()*40;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
flag[i] = (Math.random()>0.5)?1:0;
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(heart+ "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(heart+ "\" border=\"0\"></layer>");
}
} else
if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(heart+ "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(heart+ "\" border=\"0\"></div>");
}
}
}

function helpor_net() {
for (i = 0; i < no; ++ i) {
if (yp[i] > doc_height-50) {
xp[i] = 10+ Math.random()*(doc_width-amx[i]-30);
yp[i] = 0;
flag[i]=(Math.random()<0.5)?1:0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
if (flag[i])
dx[i] += stx[i];
else
dx[i] -= stx[i];
if (Math.abs(dx[i]) > Math.PI) {
yp[i]+=Math.abs(amy[i]*dx[i]);
xp[i]+=amx[i]*dx[i];
dx[i]=0;
flag[i]=!flag[i];
}
document.layers["dot"+i].top = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));
document.layers["dot"+i].left = xp[i] + amx[i]*dx[i];

}
setTimeout("helpor_net()", speed);
}

function www_helpor_net() {
for (i = 0; i < no; ++ i) {
if (yp[i] > doc_height-50) {
xp[i] = 10+ Math.random()*(doc_width-amx[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
flag[i]=(Math.random()<0.5)?1:0;
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
if (flag[i])
dx[i] += stx[i];
else
dx[i] -= stx[i];
if (Math.abs(dx[i]) > Math.PI) {
yp[i]+=Math.abs(amy[i]*dx[i]);
xp[i]+=amx[i]*dx[i];
dx[i]=0;
flag[i]=!flag[i];
}

document.all["dot"+i].style.pixelTop = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));
document.all["dot"+i].style.pixelLeft = xp[i] + amx[i]*dx[i];
}
setTimeout("www_helpor_net()", speed);
}

if (ns4up) {
helpor_net();
} else if (ie4up) {
www_helpor_net();
}
//-->
</script>

====================================================================

====================================================================

礼花背景

<layer name="a0" left=10 top=10 visibility=show bgcolor="#ffffff" clip="0,0,1,1"></layer>
<layer name="a1" left=10 top=10 visibility=show bgcolor="#fff000" clip="0,0,1,1"></layer>
<layer name="a2" left=10 top=10 visibility=show bgcolor="#ffa000" clip="0,0,1,1"></layer>
<layer name="a3" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a4" left=10 top=10 visibility=show bgcolor="#00ff00" clip="0,0,1,1"></layer>
<layer name="a5" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a6" left=10 top=10 visibility=show bgcolor="#ff0000" clip="0,0,1,1"></layer>
<layer name="a7" left=10 top=10 visibility=show bgcolor="#ffffff" clip="0,0,1,1"></layer>
<layer name="a8" left=10 top=10 visibility=show bgcolor="#fff000" clip="0,0,1,1"></layer>
<layer name="a9" left=10 top=10 visibility=show bgcolor="#ffa000" clip="0,0,1,1"></layer>
<layer name="a10" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a11" left=10 top=10 visibility=show bgcolor="#00ff00" clip="0,0,2,2"></layer>
<layer name="a12" left=10 top=10 visibility=show bgcolor="#0000ff" clip="0,0,2,2"></layer>
<layer name="a13" left=10 top=10 visibility=show bgcolor="#ff0000" clip="0,0,2,2"></layer>
<div id="starsDiv" style="position:absolute;top:0px;left:0px">
<div style="position:relative;width:2px;height:2px;background:#ffffff;font-size:2px"></div>
<div style="position:relative;width:1px;height:1px;background:#fff000;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#ffa000;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#ff00ff;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#00ff00;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#0000ff;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#FF0000;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#ffffff;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#fff000;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#ffa000;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#ff00ff;font-size:1px"></div>
<div style="position:relative;width:2px;height:2px;background:#ff00ff;font-size:2px"></div>
<div style="position:relative;width:1px;height:1px;background:#0000ff;font-size:1px"></div>
<div style="position:relative;width:1px;height:1px;background:#FF0000;font-size:1px"></div>
</div>

<SCRIPT LANGUAGE="JavaScript">

<!-- Begin
var Clrs = new Array(9);
Clrs[0] = 'ff0000';
Clrs[1] = '00ff00';
Clrs[2] = '000aff';
Clrs[3] = 'ff00ff';
Clrs[4] = 'ffa500';
Clrs[5] = 'ffff00';
Clrs[6] = '00ff00';
Clrs[7] = 'ffffff';
Clrs[8] = 'fffff0';
var sClrs = new Array(5);
sClrs[0] = 'ffa500';
sClrs[1] = '55ff66';
sClrs[2] = 'AC9DFC';
sClrs[3] = 'fff000';
sClrs[4] = 'fffff0';
var yBase;
var xBase;
var step;
var currStep = 0;
var Xpos = 1;
var Ypos = 1;
var initialStarColor = 'ffa000';
var Mtop = 250;
var Mleft = 250;
function Fireworks() {
if (document.all) {
yBase = window.document.body.offsetHeight / 3;
xBase = window.document.body.offsetWidth / 8;
}
else if (document.layers) {
yBase = window.innerHeight / 3;
xBase = window.innerWidth / 8;
}
if (document.all) {
step = 5;
for ( i = 0 ; i < starsDiv.all.length ; i++ ) {
for (ai = 0; ai < Clrs.length; ai++) {
var c = Math.round(Math.random()*[ai]);
}
if (currStep < 90)
starsDiv.all[i].style.background=initialStarColor;
if (currStep > 90)
starsDiv.all[i].style.background=Clrs[c];
starsDiv.all[i].style.top = Mtop + yBase*Math.sin((currStep+i*5)/3)*Math.sin(550+currStep/100)
starsDiv.all[i].style.left = Mleft + yBase*Math.cos((currStep+i*5)/3)*Math.sin(550+currStep/100)
}
}
else if (document.layers) {
step = 5;
for ( j = 0 ; j < 24 ; j++ ) { //number of NS layers!
var templayer = "a"+j;
for (ai = 0; ai < Clrs.length; ai++) {
var c = Math.round(Math.random()*[ai]);
}
if (currStep < 90)
document.layers[templayer].bgColor=initialStarColor;
if (currStep > 90)
document.layers[templayer].bgColor=Clrs[c];
document.layers[templayer].top = Mtop + yBase*Math.sin((currStep+j*5)/3)*Math.sin(550+currStep/100)
document.layers[templayer].left = Mleft + yBase*Math.cos((currStep+j*5)/3)*Math.sin(550+currStep/100)
}
}
currStep+= step;
T=setTimeout("Fireworks()",5);
if (currStep == 220) {
currStep = -10;
for (n = 0; n < sClrs.length; n++) {
var k = Math.round(Math.random()*n);
}
initialStarColor = sClrs[k];
if (document.all) {
Dtop = window.document.body.clientHeight - 250;
Dleft = xBase * 3.5;
Mtop = Math.round(Math.random()*Dtop);
Mleft = Math.round(Math.random()*Dleft);
document.all.starsDiv.style.top = Mtop+document.body.scrollTop;
document.all.starsDiv.style.left = Mleft+document.body.scrollLeft;
}
else if (document.layers) {
Dleft = window.innerWidth - 100;
Dtop = window.innerHeight - 100;
Mtop = Math.round(Math.random()*Dtop+window.pageYOffset);
Mleft = Math.round(Math.random()*Dleft+window.pageXOffset);
document.layers[templayer].top = Mtop;
document.layers[templayer].left = Mleft;
}
if ((Mtop < 20) || (Mleft < 20)) {
Mtop += 90;
Mleft += 90;
     }
}
}
Fireworks();
// End -->
</script>

===============================================================

===============================================================

雪景

脚本说明:
把如下代码加入<body>区域中
<SCRIPT LANGUAGE="JavaScript1.2">
<!-- Begin
var no = 12; // number of hearts
var speed = 10; // smaller number moves the hearts faster
var heart = "5.gif";
var flag;
var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (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 = 600;
if (ns4up) {
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();
amx = new Array();
amy = new Array();
stx = new Array();
sty = new Array();
flag = new Array();
for (i = 0; i < no; ++ i) {
dx[i] = 0;            // set coordinate variables
xp[i] = Math.random()*(doc_width-30)+10; // set position variables
yp[i] = Math.random()*doc_height;
amy[i] = 12+ Math.random()*20;     // set amplitude variables
amx[i] = 10+ Math.random()*40;
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random();   // set step variables
flag[i] = (Math.random()>0.5)?1:0;
if (ns4up) {           // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(heart+ "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(heart+ "\" border=\"0\"></layer>");
}
} else
if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(heart+ "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(heart+ "\" border=\"0\"></div>");
}
}
}

function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
if (yp[i] > doc_height-50) {
xp[i] = 10+ Math.random()*(doc_width-amx[i]-30);
yp[i] = 0;
flag[i]=(Math.random()<0.5)?1:0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
if (flag[i])
dx[i] += stx[i];
else
dx[i] -= stx[i];
if (Math.abs(dx[i]) > Math.PI) {
yp[i]+=Math.abs(amy[i]*dx[i]);
xp[i]+=amx[i]*dx[i];
dx[i]=0;
flag[i]=!flag[i];
}
document.layers["dot"+i].top = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));
document.layers["dot"+i].left = xp[i] + amx[i]*dx[i];

}
setTimeout("snowNS()", speed);
}

function snowIE() { // IE main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
if (yp[i] > doc_height-50) {
xp[i] = 10+ Math.random()*(doc_width-amx[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
flag[i]=(Math.random()<0.5)?1:0;
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
if (flag[i])
dx[i] += stx[i];
else
dx[i] -= stx[i];
if (Math.abs(dx[i]) > Math.PI) {
yp[i]+=Math.abs(amy[i]*dx[i]);
xp[i]+=amx[i]*dx[i];
dx[i]=0;
flag[i]=!flag[i];
}

document.all["dot"+i].style.pixelTop = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));
document.all["dot"+i].style.pixelLeft = xp[i] + amx[i]*dx[i];
}
setTimeout("snowIE()", speed);
}

if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
// End -->
</script>


(DVOL本文转自:中国DV传媒 http://www.dvol.cn)

欢迎关注微信公众账号:手机烟台(mYantai)

 

  上一篇:热文排行的算法进行了优化
  下一篇:iframe漏洞的应用
      更多...
::打印本页 ::      ::关闭窗口::


版权所有© 数码在线网站 DV OnLine©  鲁ICP备12016322号-1