HTML的英语全称为Hyper Text Markup Language,中文意思是超文本标识语言(简称为:超文本语言)。
它是计算机语言的最基础、最简单的部分。我们知道计算机最基本的识别文字(也叫语言)就是26个英文字母+10个阿拉伯数字+部分标点符号。论坛上的HTML音画制做是不借助任何软件的,所以就必须使用HTML语言(部分网站及专业论坛是不开放HTML设置的)。
初学者(包括偶)一打开HTML制式,看到的往往是一堆代码,即便不晕也是丈二和尚,往往会在这个时期放弃学习,实际上你只要摸上规律,找到窍门,它是很简单的,因为它的组成是有定律的、是固定的(不象爱情那么没有规律、那么复杂,嘿嘿)。
我学做HTML语言音画制做还没有一年的时间,刚开始与大家一样畏所不前,有幸今年我们公司成立了《电子商务推广部》,并招来了一名网页制做专业人士(嘿嘿,还属我分管),因此我就近水楼台让他教我。刚开始他教我先背格式,再后来为了调动我的兴趣就让我先转他人的作品,三转两转就有了兴趣,就慢慢的找到了窍门。再后来随着在格式上的一些变化,还能变出来几个精华帖(虽然俺知道是为了鼓励俺)。
为什么和大家罗嗦这些呢,主要是为了叫初学者别灰心。你看象我这么笨的人都基本会了,且已徐爷半老、记忆力减退,那么聪明的您一定会比俺学的又快、又好吧!
下面我就从最基本的、最基础东西开始,和大家共切磋(高手勿看,否则俺就紧张、害羞啦)
HTML语言音画最基本的构成就是四个部分: 边框 图片(内容) 音乐 FLASH
下面先讲边框:
边框可以设置任意N层,你想要几层就几层,网上很协调美观的边框大部分都是专业人士制做(有些网站可以专门下载),你不要一看见一个漂亮边框就认为楼主高不可攀,实际上大部分会员用的协调美观的边框都是共享的(当然,也有很大一部分高手是原创,例如大家比较熟悉的夜色迷离、白山岫水等高手),所以我在这里可以这样说:网上的边框是共享的,大家完全可以心安理得地去借用和复制,不用脸红(但本坛支持原创)!哈哈,我是借用别人的边框从来不脸红的人。
下面是一个七层边框的实例介绍,图片可以任意换,只要你觉着好看就行:
<TABLE cellSpacing=0 borderColorDark=#001a1a cellPadding=10 width=500 borderColorLight=#055b56 background=图片地址 border=0> <TBODY> <TR> <TD width="100%"> <TABLE cellSpacing=0 borderColorDark=#001a1a cellPadding=15 width=500 borderColorLight=#055b56 background=图片地址 border=0> <TBODY> <TR> <TD width="100%"> <TABLE cellSpacing=0 cellPadding=3 width="100%" background=图片地址 border=0> <TBODY> <TR> <TD width="100%"> <TABLE cellSpacing=0 cellPadding=15 width="100%" background= 图片地址 border=0> <TBODY> <TR> <TD width="100%"> <TABLE cellSpacing=0 cellPadding=3 width="100%" background=图片地址 border=0> <TBODY> <TR> <TD width="100%"> <TABLE cellSpacing=0 cellPadding=15 width="100%" background=图片地址 border=0> <TBODY> <TR> <TD width="100%"> <TABLE cellSpacing=10 borderColorDark=#001a1a cellPadding=0 width="100%" borderColorLight=#055b56 background=图片地址 border=0> <TBODY> <TR>
<TD>(此处插入主文)</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE> 蓝色部分是结尾,
(我偷偷的告诉你一个小窍门:做完边框和内容后,结尾部分不用自己写,在Design格式[也就是第一个格式 Design]与HTML格式[ HTML]之间来回打几次,系统就自动给你写好了,别泄密哦)
其中:border =边框粗细 width= 边框宽度 height =边框高度 cellspacing=单元格间距 cellpadding=边框间距 borderColor=边框颜色 background =插入的背景 (这几个格式你可要背过了啊,如果也和我一样记忆力不好,可以复制到你的文件夹里)
下面是帖子内容的基本格式(这些您可要记住了,如记忆力不好,可复制到文件夹里)
1、贴图片格式(支持jpg、gif等格式),红色代码是图片居中命令:
<P align=center> <IMG src="内容图片地址"></P>
2、贴普通字体格式,蓝色代码为字的颜色、红色代码为字的大小(最大为了7,最小为1),其他运动字体的格式,另行讲解:
<CENTER><FONT face=宋体 color=#e4dc9b size=4>皮尔卡丹时尚论坛</FONT></CENTER>
3、贴FLASH格式(红色代码分别是宽度与高度):
<EMBED pluginspage=http://www.macromedia.com/go/getflashplayer src=FLASH地址 width=380 height=270 type=application/x-shockwave-flash quality="high" wmode="transparent"></EMBED>
另外为大家介绍三种flash 的代码
代码1(普通的flash的插入代码)
<EMBED height=170 pluginspage=http://www.macromedia.com/go/getflashplayer src=地址 type=application/x-shockwave-flash width=330 wmode="transparent" quality="high"></EMBED>
代码2(无限制的flash的代码)
<EMBED style="LEFT: 250px; WIDTH: 400px; POSITION: absolute; TOP: 900px; HEIGHT: 300px" align=right src=地址 width=400 height=300 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED>
代码3(大型flash )
<TR><TD><EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 10px; HEIGHT: 1500px" align=right src=地址 width=500 height=1500 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED></TD>
代码4(双层flash的代码)
<EMBED align=right src=地址 width=420 height=350 type=application/octet-stream wmode="transparent" quality="high"><EMBED align=right src=地址 width=420 height=350 type=application/octet-stream wmode="transparent" quality="high">
常用特效 1。透明
style="FILTER: Alpha(opacity=100,style=2)"
2。倒影
<P align=center><FONT style="FONT-SIZE: 27pt; WIDTH: 220px; COLOR: #00ff00; HEIGHT: 10px"><IMG src="图片地址"><FONT id=ew style="FONT-SIZE: 27pt; FILTER: wave(strength=3,freq=3,phase=0,lightstrength=30) blur() flipv(); WIDTH: 220px; COLOR: #3333ff; HEIGHT: 10px"><IMG src="图片地址"></P></FONT></FONT>
3蝴蝶飞舞
<MARQUEE behavior=alternate direction=up height=300 width=110><img src=http://bbs.mz99.com/UploadFile/2004-6/20046733350553.gif></MARQUEE><FONT color=orange><MARQUEE behavior=alternate direction=up height=250 width=110><img src=http://bbs.mz99.com/UploadFile/2004-6/20046733350553.gif></MARQUEE><FONT color=Fuchsia><MARQUEE behavior=alternate direction=up height=300 width=110><img src=http://bbs.mz99.com/UploadFile/2004-6/20046733350553.gif></MARQUEE><FONT color=olive><MARQUEE behavior=alternate direction=up height=250 width=110><img src=http://bbs.mz99.com/UploadFile/2004-6/20046733350553.gif></MARQUEE>
发贴前别忘了把自动修正的小勾除掉自动修正
图片加透明FDLASH格式:
<center><TABLE cellSpacing=2 cellPadding=2 border=10 bordercolor=#84B98D background=图片><TBODY><TD><EMBED src=透明网址 width=500 height=375 type=application/x-shockwave-flash quality="high" menu="false" wmode="transparent"></embed></table></center>
发贴前别忘了把自动修正的小勾除掉自动修正
贴音乐格式(红色部分为播放器的大小,设置为0就隐藏了播放器):
1.背景音乐(适合 mid wma等格式) <bgsound src=音乐网址 Loop=-1>
2.音频(适合MP3 WMA RM等很多格式) <embed src=网址 AutoStart=true Loop=true width=400 height=40
3.视频 <embed src=视频网址 type=audio/x-pn-realaudio-plugin controls=imagewindow,ControlPanel,StatusBar AutoStart=true Loop=true width=400 height=400>
说明:AutoStart=true 表示是否要音乐文件传送完就自动播放,TRUE是要,FALSE是不要,默认为true
Loop=true 表示设定播放重复次数,LOOP=3表示重复3次,true表示无限次播放,FALSE播放一次即停止。
为让大家有个直观的认识,就我自己的一个成品帖子,做一下实例演示:
(帖子地址:http://www.maoge.com.cn/bbs/dispbbs.asp?boardID=2&ID=32&page=1)
1、红色部分是边框;
2、蓝色部分是内容;
3、黑色部分是结尾
4、紫色部分是音乐
<TABLE cellSpacing=15 cellPadding=0 width=570 background=http://222.186.123.12/yueming/UploadFile/2004-11/2004111720481551.jpg border=0> <TBODY> <TR> <TD width=520> <TABLE cellSpacing=10 cellPadding=0 width=520 background=http://gb.qjinfo.com/userfilepath/xiaotan/xiaotan007/cancaoparatifundo1.jpg border=0> <TBODY> <TR> <TD width=520> <TABLE cellSpacing=4 cellPadding=0 width=520 background=http://life121888.512j.com/index/GardenOfGoldstrip[1].jpg___200494123055106.jpg border=0> <TBODY> <TR> <TD width=520> <TABLE cellSpacing=10 cellPadding=0 background=http://gb.qjinfo.com/userfilepath/xiaotan/xiaotan007/cancaoparatifundo1.jpg border=0> <TBODY> <TR> <TD width=520> <TABLE cellSpacing=10 borderColorDark=#990000 cellPadding=0 width=520 borderColorLight=#cc0000 background=http://222.186.123.12/yueming/UploadFile/2004-11/2004111720481551.jpg border=1> <TBODY> <TR> <TD width=520> <TABLE cellSpacing=4 cellPadding=10 width=520 background=http://sbr0912.vicp.net/dvbbs/UploadFile/2004-12/2004123103319481.jpg border=0> <TBODY> <TR> <TD width=520 background=http://gb.qjinfo.com/userfilepath/xiaotan/xiaotan007/cancaoparatifundo1.jpg></TD> <TR> <TD width=520> <TABLE cellSpacing=0 cellPadding=0 width=520 background="" border=0> <TBODY> <TR> <TD> <P align=center><IMG src="http://www.616bbs.com/picture/xx9/ss2/373.gif"></P> <P align=center><IMG src="http://www.mtvbbs.com/UploadFile/2004-12/200412618938565.gif"></P> <P align=center><IMG src="http://tech.china.com/zh_cn/home4u/sucai/gifanimation/line/0025.gif"></P> <TABLE borderColor=#d2b48c height=230 cellSpacing=1 width=360 align=center background=http://www.mtvbbs.com/UploadFile/2004-12/2004126172826197.jpg border=8> <TBODY> <TR> <TD align=middle width="93%"><EMBED src=http://mtv.vicn.com/upload/2004482345353317.swf width=360 height=230 type=application/x-shockwave-flash wmode="transparent" menu="false" quality="high"></TD></TR></TBODY></TABLE> <P align=center><IMG src="http://sbr0912.vicp.net/dvbbs/UploadFile/2004-12/2004122145722665.gif"></P> <P align=center> <TABLE borderColor=#d2b48c height=400 cellSpacing=3 width=540 background=http://www.mtvbbs.com/UploadFile/2004-12/2004126172728883.jpg border=1> <TBODY> <TR> <TD align=middle width="93%"><EMBED src=http://favorites2003.vicp.net/picture/cl/2.swf width=540 height=400 type=application/x-shockwave-flash quality="high" menu="false" wmode="transparent"></TD></TR></TBODY></TABLE> <P align=center><IMG src="http://sbr0912.vicp.net/dvbbs/UploadFile/2004-12/2004122145722665.gif"></P> <P align=center></P> <TABLE borderColor=#d2b48c height=400 cellSpacing=3 width=540 align=center background=http://www.mtvbbs.com/UploadFile/2004-12/2004126172712268.jpg border=8> <TBODY> <TR> <TD align=middle width="95%"><EMBED src=http://imgfree.21cn.com/free/flash/4.swf width=540 height=400 type=application/x-shockwave-flash wmode="transparent" menu="false" quality="high"></TD></TR></TBODY></TABLE> <P align=center><IMG src="http://sbr0912.vicp.net/dvbbs/UploadFile/2004-12/2004122145722665.gif"></P> <P align=center></P> <TABLE borderColor=#d2b48c height=210 cellSpacing=3 width=540 align=center background=http://www.mtvbbs.com/UploadFile/2004-12/200412617271816.jpg border=8> <TBODY> <TR> <TD align=middle width="93%"><EMBED src=http://imgfree.21cn.com/free/flash/4.swf width=540 height=210 type=application/x-shockwave-flash wmode="transparent" menu="false" quality="high"></TD></TR></TBODY></TABLE> <P align=center><IMG src="http://tech.china.com/zh_cn/home4u/sucai/gifanimation/line/0025.gif"></P> <P align=center><IMG src="http://www.maoge.com.cn/bbs/UploadFile/2004-12/2004126164838195.gif"></P> <P align=center><IMG src="http://www.616bbs.com/picture/xx9/ss2/373.gif"></P></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><EMBED src=http://mp3.baidu.com/u?u=http://www.mckxx.com/shaoxiandui/media/YWMJBPDg~wP0I-zm7wPwMuos6xxd9g3~K1sz.MP3 width=0 height=0 type=audio/mpeg Loop="true" AutoStart="true">
1、红色边框部分:
<TABLE cellSpacing=15 cellPadding=0 width=570 background=http://222.186.123.12/yueming/UploadFile/2004-11/2004111720481551.jpg border=0>
A、<TABLE =开始 <TABLE> =结尾 (这两个是绝对格式,否则就成乱码了)
B、cellSpacing=15 =单元格间距(可以任意设置宽度)
C、cellPadding=0 =边框间距
D、width=570 =边框宽度
E、background =插入的背景格式
F、*http://222.186.123.12/yueming/UploadFile/2004-11/2004111720481551.jpg* =背景图片
G、border=0> = 边框粗细
2、蓝色内容部分:
<TBODY> <TR> <TD> <P align=center><IMG src="http://www.616bbs.com/picture/xx9/ss2/373.gif"></P> <P align=center><IMG src="http://www.mtvbbs.com/UploadFile/2004-12/200412618938565.gif"></P> <P align=center><IMG src="http://tech.china.com/zh_cn/home4u/sucai/gifanimation/line/0025.gif"></P> <TABLE borderColor=#d2b48c height=230 cellSpacing=1 width=360 align=center background=http://www.mtvbbs.com/UploadFile/2004-12/2004126172826197.jpg border=8> <TBODY> <TR> <TD align=middle width="93%"><EMBED src=http://mtv.vicn.com/upload/2004482345353317.swf width=360 height=230 type=application/x-shockwave-flash wmode="transparent" menu="false" quality="high"></TD></TR></TBODY></TABLE>
A、(过渡指令码,我们就这么叫吧)
<TBODY> <TR> <TD>
B、(分隔线图片、GIF图片)
<P align=center><IMG src="http://www.616bbs.com/picture/xx9/ss2/373.gif"></P> <P align=center><IMG src="http://www.mtvbbs.com/UploadFile/2004-12/200412618938565.gif"></P>
C、背景图片
<TABLE borderColor=#d2b48c height=230 cellSpacing=1 width=360 align=center background=http://www.mtvbbs.com/UploadFile/2004-12/2004126172826197.jpg border=8>
D、单层FLASH
<TBODY> <TR> <TD align=middle width="93%"><EMBED src=http://mtv.vicn.com/upload/2004482345353317.swf width=360 height=230 type=application/x-shockwave-flash wmode="transparent" menu="false"
E、本单元结尾
</TD></TR></TBODY></TABLE>
3、黑色结尾部分(略,可系统自动结尾)
</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
4、紫色音乐部分:
<EMBED src=http://mp3.baidu.com/u?u=http://www.mckxx.com/shaoxiandui/media/YWMJBPDg~wP0I-zm7wPwMuos6xxd9g3~K1sz.MP3 width=0 height=0 type=audio/mpeg Loop="true" AutoStart="true">
A、<EMBED src= =开始
B、音乐地址:
http://mp3.baidu.com/u?u=http://www.mckxx.com/shaoxiandui/media/YWMJBPDg~wP0I-zm7wPwMuos6xxd9g3~K1sz.MP3
C、播放器大小(隐藏格式)
width=0 height=0
D、自动重复播放格式
type=audio/mpeg Loop="true" AutoStart="true">
为方便大家制做HTML音画,特发一些相关代码。
1、特效字体(用哪种字,可直接打开引用复制,也可到楼下按顺序或内容直接复制代码、发表时把顺序号拿掉。特别提醒:以下字体发表时一定把自动修正的小勾除掉)
欢迎大家
记住看贴要回帖呀
1、<CENTER><FONT style="FONT-SIZE: 40pt; FILTER: shadow(color=green); WIDTH: 100%; COLOR: #e4dc9b; LINE-HEIGHT: 150%; FONT-FAMILY: 宋体" size=4>皮尔卡丹</FONT></CENTER>
2、<P align=center><FONT style="FONT-SIZE: 40pt; FILTER: shadow(color=black); WIDTH: 71.27%; COLOR: #e4dc9b; LINE-HEIGHT: 150%; FONT-FAMILY: 华文彩云; HEIGHT: 60px"><B>欢迎大家</B></FONT></P>
3、<CENTER><FONT style="FONT-SIZE: 40pt; FILTER: shadow(color=#9370DB); WIDTH: 100%; COLOR: #ffebcd; LINE-HEIGHT: 150%; FONT-FAMILY: 隶书">记住看贴要回帖呀</B></FONT></CENTER>
4、<P align=center><FONT style="FONT-SIZE: 40pt; FILTER: shadow(color=#87CEFA, strength=50); WIDTH: 400px"><FONT face=隶书 color=#1e90ff> <CENTER><B>皮尔卡丹时尚论坛</B></CENTER></FONT></FONT>
5、<DIV style="FILTER: shadow(color=#c299ff, strength=60); WIDTH: 480px"> <P align=center><FONT style="FONT-WEIGHT: normal; FONT-SIZE: 150pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文彩云 color=#f709c7>皮尔卡丹</FONT></P></DIV>
6、<FONT style="FONT-SIZE: 40pt; FILTER: shadow(color=green); WIDTH: 100%; COLOR: white; LINE-HEIGHT: 150%; FONT-FAMILY: 华文彩云"> <P align=center><B>皮尔卡丹</B></P></FONT>
7、</B><FONT style="FONT-SIZE: 55pt; FILTER: shadow(color=apar); WIDTH: 100%; COLOR: #00ff00; LINE-HEIGHT: 100%" face=汉鼎繁随意 size=6> <P align=center>皮尔卡丹</P></FONT>
8、<CENTER><FONT style="FONT-WEIGHT: normal; FONT-SIZE: 60pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷 color=red></B>皮尔卡丹</B></FONT></CENTER>
9、<MARQUEE width=250 height=50><IMG src="http://www.maoge.com.cn/bbs/showimg.asp?BoardID=12&filename=2004-12/2004127194539858.jpg"><FONT face=隶书 color=#ff0000 size=7>皮尔卡丹时尚论坛欢迎你您<IMG src="http://www.maoge.com.cn/bbs/showimg.asp?BoardID=12&filename=2004-12/2004127194539858.jpg"></FONT></MARQUEE></FONT> <MARQUEE direction=right width=250 height=50><IMG src="http://www.maoge.com.cn/bbs/showimg.asp?BoardID=12&filename=2004-12/2004127194539858.jpg"><FONT face=隶书 color=#ff0000 size=7> 您迎欢坛论尚时丹卡尔皮<IMG src="http://www.maoge.com.cn/bbs/showimg.asp?BoardID=12&filename=2004-12/2004127194539858.jpg"></FONT></MARQUEE></FONT>
10、<P align=center><FONT style="FONT-WEIGHT: bolder; FONT-SIZE: 70px; FILTER: blur(add=1, direction=45,strength=10); WIDTH: 450px; POSITION: relative" color=#3333cc>皮尔卡丹时尚论坛欢迎你您</FONT></CAPTION></CAPTION></P> <DIV></DIV></B>
11、<FONT style="FONT-SIZE: 55pt; FILTER: shadow(color=#AF0530); WIDTH: 100%; COLOR: #f90b46; LINE-HEIGHT: 150%; FONT-FAMILY: 隶书"> <P align=center><B>时尚论坛</B></P></FONT>
12、<TABLE cellSpacing=0 cellPadding=0 align=center background=http://xz7.2000y.net/admin/uploadpic/20045493855518.gif> <TBODY> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 align=center background=http://xz7.2000y.net/admin/uploadpic/2004797435571.gif> <TBODY> <TR> <TD style="FILTER: chroma(color=#336699)"> <TABLE align=center bgColor=black> <TBODY> <TR> <TD align=middle><FONT style="FONT-SIZE: 60pt" face=华文楷体 color=#336699><B>皮尔卡丹时尚论坛欢迎你您</B></FONT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
13、<FONT style="FONT-SIZE: 60pt; FILTER: glow(color=black); WIDTH: 100%; COLOR: #e4dc9b; LINE-HEIGHT: 150%; FONT-FAMILY: 楷体_GB2312"><B>祝贺皮尔卡丹论坛开通迎客</B></FONT>
14、<FONT style="FONT-SIZE: 30pt; FILTER: shadow(color=black,direction=180); WIDTH: 100%; COLOR: red; LINE-HEIGHT: 150%; FONT-FAMILY: 华文行楷"> <P align=center><B>特效字体很多很多<BR>我只发了几个自己喜欢用的<BR>如各位有什么特殊要求可系统短信通知</B></P></FONT>
注:30pt ,pt前面的数字为调整字体大小
2、特效透明FLASH(发表时把自动修正的小勾拿掉)
(自上而下飘雪花)
<EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1200px" align=center src=http://imgfree.21cn.com/free/flash/23.swf width=900 height=1200 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED> <EMBED style="LEFT: 50px; WIDTH: 850px; POSITION: absolute; TOP: 100px; HEIGHT: 1200px" align=center src=http://imgfree.21cn.com/free/flash/23.swf width=900 height=1200 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://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/octet-stream ;; quality="high" wmode="transparent"></EMBED>
(由下而上飘红心)
<EMBED style="LEFT: 400px; WIDTH: 300px; POSITION: absolute; TOP: 10px; 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: 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="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 wmode="transparent" quality="high" ;;></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 wmode="transparent" quality="high" ;;></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 wmode="transparent" quality="high" ;;></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 wmode="transparent" quality="high" ;;></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 wmode="transparent" quality="high" ;;></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 wmode="transparent" quality="high" ;;></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 wmode="transparent" quality="high" ;;></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 wmode="transparent" quality="high" ;;></EMBED> <CENTER></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 wmode="transparent" quality="high" ;;></EMBED><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 wmode="transparent" quality="high" ;;></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 wmode="transparent" quality="high" ;;></EMBED>
(由下而上飘玫瑰)
<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>
注:层数、高宽度、FLASH地址、物体大小可任意设
置和更换:
1、RIGHT: 100px =物体大小
2、WIDTH: 800px =宽度
3、HEIGHT: 3000px =高度
〓透明FLASH*100助你做音画〓
http://www.nygyfs.com/tmswf/02.swf
http://www.nygyfs.com/tmswf/03.swf
http://www.nygyfs.com/tmswf/04.swf
http://www.nygyfs.com/tmswf/05.swf
http://www.nygyfs.com/tmswf/06.swf
http://www.nygyfs.com/tmswf/07.swf
http://www.nygyfs.com/tmswf/08.swf
http://www.nygyfs.com/tmswf/09.swf
http://www.nygyfs.com/tmswf/10.swf
http://www.nygyfs.com/tmswf/11.swf
http://www.nygyfs.com/tmswf/12.swf
http://www.nygyfs.com/tmswf/13.swf
http://www.nygyfs.com/tmswf/14.swf
http://www.nygyfs.com/tmswf/15.swf
http://www.nygyfs.com/tmswf/16.swf
http://www.nygyfs.com/tmswf/17.swf
http://www.nygyfs.com/tmswf/18.swf
http://www.nygyfs.com/tmswf/19.swf
http://www.nygyfs.com/tmswf/20.swf
http://www.nygyfs.com/tmswf/21.swf
http://www.nygyfs.com/tmswf/22.swf
http://www.nygyfs.com/tmswf/23.swf
http://www.nygyfs.com/tmswf/24.swf
http://www.nygyfs.com/tmswf/25.swf
http://www.nygyfs.com/tmswf/26.swf
http://www.nygyfs.com/tmswf/27.swf
http://www.nygyfs.com/tmswf/28.swf
http://www.nygyfs.com/tmswf/29.swf
http://www.nygyfs.com/tmswf/30.swf
http://www.nygyfs.com/tmswf/31.swf
http://www.nygyfs.com/tmswf/32.swf
http://www.nygyfs.com/tmswf/33.swf
http://www.nygyfs.com/tmswf/34.swf
http://www.nygyfs.com/tmswf/35.swf
http://www.nygyfs.com/tmswf/36.swf
http://www.nygyfs.com/tmswf/37.swf
http://www.nygyfs.com/tmswf/38.swf
http://www.nygyfs.com/tmswf/39.swf
http://www.nygyfs.com/tmswf/40.swf
http://www.nygyfs.com/tmswf/41.swf
http://www.nygyfs.com/tmswf/42.swf
http://www.nygyfs.com/tmswf/43.swf
http://www.nygyfs.com/tmswf/44.swf
http://www.nygyfs.com/tmswf/45.swf
http://www.nygyfs.com/tmswf/46.swf
http://www.nygyfs.com/tmswf/47.swf
http://www.nygyfs.com/tmswf/48.swf
http://www.nygyfs.com/tmswf/49.swf
http://www.nygyfs.com/tmswf/50.swf
http://www.nygyfs.com/tmswf/51.swf
http://www.nygyfs.com/tmswf/52.swf
http://www.nygyfs.com/tmswf/53.swf
http://www.nygyfs.com/tmswf/54.swf
http://www.nygyfs.com/tmswf/55.swf
http://www.nygyfs.com/tmswf/56.swf
http://www.nygyfs.com/tmswf/57.swf
http://www.nygyfs.com/tmswf/58.swf
http://www.nygyfs.com/tmswf/59.swf
http://www.nygyfs.com/tmswf/60.swf、
http://www.nygyfs.com/tmswf/61.swf
http://www.nygyfs.com/tmswf/62.swf
“http://www.nygyfs.com/tmswf/63.swf
http://www.nygyfs.com/tmswf/64.swf
http://www.nygyfs.com/tmswf/65.swf
http://www.nygyfs.com/tmswf/66.swf
http://www.nygyfs.com/tmswf/67.swf
http://www.nygyfs.com/tmswf/68.swf
http://www.nygyfs.com/tmswf/69.swf
http://www.nygyfs.com/tmswf/70.swf
http://www.nygyfs.com/tmswf/71.swf
http://www.nygyfs.com/tmswf/72.swf
http://www.nygyfs.com/tmswf/73.swf
http://www.nygyfs.com/tmswf/74.swf
http://www.nygyfs.com/tmswf/75.swf
http://www.nygyfs.com/tmswf/76.swf
http://www.nygyfs.com/tmswf/77.swf
http://www.nygyfs.com/tmswf/78.swf
http://www.nygyfs.com/tmswf/79.swf
http://www.nygyfs.com/tmswf/80.swf
http://www.nygyfs.com/tmswf/81.swf
http://www.nygyfs.com/tmswf/82.swf
http://www.nygyfs.com/tmswf/83.swf
http://www.nygyfs.com/tmswf/84.swf
http://www.nygyfs.com/tmswf/85.swf
http://www.nygyfs.com/tmswf/86.swf
http://www.nygyfs.com/tmswf/87.swf
http://www.nygyfs.com/tmswf/88.swf
http://www.nygyfs.com/tmswf/89.swf
http://www.nygyfs.com/tmswf/90.swf
http://www.nygyfs.com/tmswf/91.swf
http://www.nygyfs.com/tmswf/92.swf
http://www.nygyfs.com/tmswf/93.swf
http://www.nygyfs.com/tmswf/94.swf
http://www.nygyfs.com/tmswf/95.swf
http://www.nygyfs.com/tmswf/96.swf
http://www.nygyfs.com/tmswf/97.swf
http://www.nygyfs.com/tmswf/98.swf
http://www.nygyfs.com/tmswf/99.swf
http://www.nygyfs.com/tmswf/100.swf |