背景
原代碼如下:
<TABLE align=center background="帖子背景圖" border=0 cellPadding=0 cellSpacing=0 borderColor=#ffff00 width="100%"><TBODY><TR><TD>
帖子內容,文字或圖片..... </TD></TR></TBODY></TABLE> <TABLE> 的參數設定(常用):
<table width="400" border="1" cellspacing="2" cellpadding="2" align="CENTER" valign="TOP" background="myweb.gif" bgcolor="#0000FF" bordercolor="#CF0000" bordercolorlight="#00FF00" bordercolordark="#00FFFF" cols="2">
注解:
width="400" 表格寬度,接受絕對值(如 80)及相對值(如 80%)。
border="1" 表格邊框的厚度,不同瀏覽器有不同的內定值,故請指明。
cellspacing="2" 表格格線的厚度
align="CENTER" 表格的擺放位置(水平),可選值為: left, right, center
valign="TOP". 表格內內容的對齊方式(垂直),可選值為: top, middle, bottom。
background="myweb.gif" 表格的背景圖片,與 bgcolor 不要同用。
bgcolor="#0000FF" 表格的底色,與 background 不要同用
bordercolor="#CF0000" 表格邊框顏色
bordercolorlight="#00FF00" 表格邊框向光部分的顏色
bordercolordark="#00FFFF" 表格邊框背光部分的顏色,使用 bordercolorlight 或 bordercolordark 時 bordercolor 將會失效。
cols="2" 表格欄位數目,只是讓瀏覽器在下載表格時先畫出整個表格而已。 載入音樂
基本語法:
<EMBED SRC="音樂文件地址">
常用屬性如下:
src="your.mid" 設定 midi 檔案及路徑,可以是相對或絕對。
autostart=true 是否在音樂檔下載完之后就自動播放。true 是,false 否 (內定值)。
loop="true" 是否自動反復播放。LOOP=2 表示重復兩次,true 是, false 否。
HIDDEN="true" 是否完全隱藏控制畫面,true 為是,no 為否 (內定)。
STARTTIME="分:秒" 設定歌曲開始播放的時間。如 STARTTIME="00:30" 表示從第30秒處開始播放。
VOLUME="0-100" 設定音量的大小,數值是0到100之間。內定則為使用系統(tǒng)本身的設定
WIDTH="整數" 和 HIGH="整數" 設定控制面板的高度和寬度。(若 HIDDEN="no")
ALIGN="center" 設定控制面板和旁邊文字的對齊方式,其值可以是 top、bottom、center、baseline、 left、right、texttop、middle、absmiddle、absbottom
CONTROLS="smallconsole" 設定控制面板的外觀。預設值是 console。 console 一般正常面板 smallconsole 較小的面板 playbutton 只顯示播放按鈕 pausecutton 只顯示暫停按鈕 stopbutton 只顯示停止按鈕 volumelever 只顯示音量調節(jié)按鈕
例一:
<EMBED SRC="midi.mid" autostart=true hidden=true loop=true>
作為背景音樂來播放,隱藏了播放器。
例二:
<EMBED SRC="midi.mid" loop=true width=145 height=60>
出現(xiàn)控制面板了,你可以控制它的開與關,還可以調節(jié)音量的大小。
注明:可用來插入各種多媒體,格式可以是 Midi、Wav、AIFF、AU 等等,Netscape 及 新版的 IE 都支持。
IE中的的背景音樂
代碼如下:
<bgsound src="音樂文件地址" loop=#>
#=循環(huán)數
注明:這種背景音樂格式,只有在IE瀏覽器中才可以聽到。一般用來插入wav wma mid mp3等格試的音樂。
在論壇做帖常用格試如下:
一:
<EMBED height=200 src=音樂文件地址 type=audio/x-pn-realaudio-plugin width=200 autostart="true" controls="IMAGEWINDOW,ControlPanel,StatusBar" console="Clip1"></EMBED>
說明:一般用來插入mp3 rm ra ram asf mid 等音樂文件,如果要隱藏播放器,把width和height的數值改成0或者1就可以了。
二:
<bgsound src="音樂文件地址" loop=3>說明:一般用來插入wav wma mid mp3等格試的音樂文件。 最簡單的滾動條設置
<table align=center width="260" border="0"> <tr><td bgcolor="cyan"><font color="#FFFFFF"><b>帶滑動條的表格</b></font></td></tr> <tr><td bgcolor="yellow"> <div style="overflow:auto;height:80;"> 看看這個效果,不要以為是IFRAME,這可是地地道道的表格!其實,這是表格和CSS結合的效果。當網頁上有大段文字要顯示,而又沒有足夠的空間時,這就派上用場了。雖然用文本框也可以實現(xiàn)類似效果,但卻遠沒有用表格靈活。代碼很簡單,只要在單元格<td>標識后加上如下代碼就可以了 </div> </td> </tr> </table> 頁面嵌入
<iframe src="你要嵌入的網址" width="600" height=800 marginwidth="0"
marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>
說明:(紅色部分) width和height即寬度和高度根據你所嵌入目標的高度和寬度填寫, 例如你的日記本的寬為600,高為800,填上去就可以完整顯示了
scroing 表示滾動條,它有三個參數,
一個是 yes, 即顯示滾動條,
二是no,表示不顯示滾動條.
第三是auto,系統(tǒng)自動判斷顯示或不顯示滾動條~ 1. 將徹底屏蔽鼠標右鍵,無右鍵菜單 <body oncontextmenu="window.event.returnvalue=false">
也可以用于網頁中Table框架中
<table border oncontextmenu=return(false)><td>no</table>
2.取消選取、防止復制
<body onselectstart="return false">
3.不準粘貼 <body onpaste="return false">
4.防止復制 <body oncopy="return false;" oncut="return false;">
5.IE地址欄前換成自己的圖標 <link rel="Shortcut Icon" href="favicon.ico"> 說明:關于favicon.ico文件的制作。你可以先在FW中做一個圖片,屬于你自己站點一個小圖標。然后在ACD see將文件屬性改為*.ico,然后將你做的*.ICO文件傳到你的服務器目錄中,然后就可以使用以上代碼來實現(xiàn),當別人登陸你的站點時,地址欄里使用的就是你自定義的圖標了。很PP哦。
6.可以在收藏夾中顯示出你的圖標 <link rel="Bookmark" href="favicon.ico"> 說明:制作方法和上面的一樣。只是顯示的方式不同,這個是在別人收藏你的網頁地址時顯示的個性圖標。也很PP.
7.關閉輸入法 <input style="ime-mode:disabled"> 說明:這段代碼是在表格提交時用到的。也就是在輸入數據時不可以使用其他輸入法模式。
8.永遠都會帶著框架 <script language="javascript"><!-- if (window == top)top.location.href = "frames.htm";// --></script> 說明:frames.htm為你的網頁,這也是保護頁面的一種方法
9.防止被人frame <SCRIPT LANGUAGE=javascript><!-- if (top.location != self.location)top.location=self.location; // --></SCRIPT>
10.網頁將不能被另存為 <noscript><iframe src=*.html></iframe></noscript> 說明:<noscirpt>的用法很廣,其中一條就是可以使JS廣告失效。
11.查源文件 <input type=button value=查看網頁源代碼 onclick="window.location = 'view-source:'+ [url]http://www./jl.asp[/url]';">
12.COOKIE腳本記錄,有很大的用處哦
<script language =“javascript“> function get_cookie(Name) { var search = Name + "=" var returnvalue = ""; if (documents.cookie.length > 0) { offset = documents.cookie.indexOf(search) if (offset != -1) { // if cookie exists offset += search.length // set index of beginning of value end = documents.cookie.indexOf(";", offset); // set index of end of cookie value if (end == -1) end = documents.cookie.length; returnvalue=unescape(documents.cookie.substring(offset, end)) } } return returnvalue; } function loadpopup(){ if (get_cookie('popped')==''){ openpopup() documents.cookie="popped=yes" } } </script>
13.內框架<IFRAME>使用 Iframe標記的使用格式是: <iframe src="URL" width="x" height="x" scrolling="[OPTION]" frameborder="x" name="main"></iframe> src:文件的路徑,既可是HTML文件,也可以是文本、ASP等; width、height:"內部框架"區(qū)域的寬與高; scrolling:當SRC的指定的HTML文件在指定的區(qū)域不顯不完時,滾動選項,如果設置為NO,則不出現(xiàn)滾動條;如為Auto:則自動出現(xiàn)滾動條;如為Yes,則顯示; FrameBorder:區(qū)域邊框的寬度,為了讓“內部框架“與鄰近的內容相融合,常設置為0。 name:框架的名字,用來進行識別。 比如: 當你想用父框架控制內部框架時,可以使用: target="框架的名字"來控制。 例子:<iframe name="mm" src="http://www.";; width="100%" height="100%" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>
14.自動跳轉 在源代碼中的<head>…</head>加入如下代碼: <meta http-equiv="refresh"content="3;URL=http://www.; charset=gb2312"> 說明:content="3 表示3秒刷新到URL
15.如何改變鏈接的鼠標形狀 只需在鏈接上加上這一代碼就行的了 或者跟上面的用CSS寫也行 style="cursor:hand" style="cursor:crosshair" style="cursor:text" style="cursor:wait" style="cursor:move" style="cursor:help" style="cursor:e-resize" style="cursor:n-resize" style="cursor:nw-resize" style="cursor:w-resize" style="cursor:s-resize" style="cursor:se-resize" style="cursor:sw-resize" 以上代碼你只需要加到連接或是頁面的style區(qū)里就可以實現(xiàn)鼠標多樣化?!?br> 16.全屏顯示 <form> <div align="center"> <input type="BUTTON" name="FullScreen" value="全屏顯示" onClick="window.open(document.location, 'big', 'fullscreen=yes')"> </div> </form> 把它放到<body>區(qū)中。
17.設為首頁 <script language="javascript"> <!-- function defaul_home(){ this.home.style.behavior='url(#default#homepage)';this.home.setHomePage([url]http://www./[/url]';); } var focusok=false; if (navigator.appName == "Netscape"){ focusok=true; } vers=navigator.appVersion; if (navigator.appName == "Microsoft Internet Explorer"){ pos=vers.lastIndexOf('.'); vers=vers.substring(pos-1,vers.length); } proper_version=parseFloat(vers); if(proper_version>=5){ focusok=true; } function launchstock1(htmlurl){ var stock=window.open(htmlurl,"stock","top=2,left=2,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes, resizable=no,width=700,height=510"); if(focusok){ stock.focus(); } return true; } function launchstock(){ var stock=window.open("","stock","top=2,left=2,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes, resizable=no,width=700,height=510"); if(focusok){ stock.focus(); } return true; } // --> </script> <a href="#" name="home" onClick="defaul_home();" title="==E代時光==">設為首頁</a>
18.這里是加入收藏夾的代碼 <a href="#" onClick="window.external.addFavorite([url]http://www.[/url]';.'-=E代時光=-')" target="_self" title="-=E代時光=-">加入收藏夾</a>
19.flash圖片效果 以下代碼加入<head>區(qū)域 <SCRIPT language="javascript"> <!-- function makevisible(cur,which){ if (which==0) cur.filters.alpha.opacity=100 else cur.filters.alpha.opacity=20 } //--> </SCRIPT> 以下代碼加入<body>區(qū)域 <img src="http://www./img/logo.gif";; style="filter:alpha(opacity=20)" onMouseOver="makevisible(this,0)" onMouseOut="makevisible(this,1)" width="63" height="56"> //圖片地址請自己改
20.背景圖片滾動 <body scroll="no" background="images/bg.jpg" link="#00FF00" alink="#FF0000" vlink="#00FF00" bgcolor="#000080" topmargin="8"> <script language="javascript"> var backgroundOffset = 0; var bgObject = eval('document.body'); function scrollBG(maxSize) {backgroundOffset = backgroundOffset + 1; if (backgroundOffset > maxSize) backgroundOffset = 0; bgObject.style.backgroundPosition = "0 " + backgroundOffset;} var ScrollTimer = window.setInterval("scrollBG(410)", 20) </script>
21.滾動特效 <marquee onMouseOver="this.stop()" onMouseOut="this.start()" scrollamount="2" scrolldelay="0" direction="up" width="330" height="120" border="0" align="center" id="MARQUEE1"> 歡迎光臨無風網絡 我們地址[url]http://www.[/url] </marquee>
22.讓背景圖不滾動
IE瀏覽器支持一個 Body 屬性 bgproperties,它可以讓背景不滾動: 〈Body Background="圖片文件" bgproperties="fixed"〉
23.讓你的網頁無法另存為
<noscript><iframe src=*></iframe></noscript>
24.讓IFRAME框架內的文檔的背景透明
<iframe src="about :<body style='background:transparent'>" allowtransparency></iframe>
25.禁止右鍵:
<body oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false"onmouseup="document.selection.empty()">
26.進入頁面后立即自動刷新? <meta http-equiv="refresh" content="120;url=http://www."> [url]http://www.[/url],這是你自己的網址。
27.隱藏IFRAME的滾動條三種方法:
1. 設置iframe scrolling="no" 2. 被包含頁body應用overflow:hidden 3. 被包含頁的body標簽加scroll="no"
28.加入背景音樂 <bgsound src="mid/min1.mid" loop="-1"> 只適用于IE <embed src="music.mid" autostart="true" loop="true" hidden="true"> 對Netscape ,IE 都適用
29.滾動 <MARQUEE direction=up height=146 onmouseout=start() onmouseover=stop() scrollAmount=4></marquee>
30.細線分隔線 <hr noshade size=0 color=#C0C0C0>
31.過度方式 <meta http-equiv="Page-Exit" content="revealTrans(Duration=3,Transition=5)"> Duration的值為網頁動態(tài)過渡的時間,單位為秒。 Transition是過渡方式,它的值為0到23,分別對應24種過渡方式。如下表: 0 盒狀收縮 1 盒狀放射 2 圓形收縮 3 圓形放射 4 由下往上 5 由上往下 6 從左至右 7 從右至左 8 垂直百葉窗 9 水平百葉窗 10 水平格狀百葉窗 11垂直格狀百葉窗 12 隨意溶解 13從左右兩端向中間展開 14從中間向左右兩端展開 15從上下兩端向中間展開 16從中間向上下兩端展開 17 從右上角向左下角展開 18 從右下角向左上角展開 19 從左上角向右下角展開 20 從左下角向右上角展開 21 水平線狀展開 22 垂直線狀展開 23 隨機產生一種過渡方式
32.如何控制橫向和縱向滾動條的顯隱? <body style="overflow-y:hidden"> 去掉x軸 <body style="overflow-x:hidden"> 去掉y軸 <body scroll="no">不顯
33.加入注釋的格式是: 〈!-[注釋內容…]--〉
34.怎樣在網頁中加入 E-mail 鏈接并顯示預定的主題? 〈A href="mailto:lovq@163.com=主題"〉……〈/a〉
35.定義本網頁關鍵字,可以在〈Head〉〈/Head〉中加入如下代碼: 〈meta name="Keywords" content="無風網絡"〉 Content 中所包含的就是關鍵字,你可以自行設置。 這里有個技巧,你可以重復某一個單詞,這樣可以提高自己網站的排行位置,如: 〈meta name="Keywords" content="無風網絡"〉
36.添加到收藏夾: 〈a href="java script:window.external.addFavorite([url]http://www.[/url]','http://www.');"〉添加到收藏夾〈/a〉
37.設為首頁: 〈a href=# onclick=this.style.behavior='url(#default#homepage)';this.setHomePage([url]http://www.);[/url]〉設為首頁〈/a〉
38.定制瀏覽器地址欄前的小圖標: A:在網頁的〈head〉〈/head〉間加入以下語句: 〈link rel="shortcuticon" href="http://…/icon.ico"〉 即可。其中 icon.ico 為 16x16 的圖標文件,顏色不要超過 16 色。
39.表格的分隔線可以隱藏 <table border rules=cols cellspacing=0 align=left> 可以隱藏橫向的分隔線 <table border rules=rows cellspacing=0 align=right>可以隱藏縱向的分隔線
<table border rules=none cellspacing=0 align=center>可以隱藏橫向和縱向的分隔線
40.表格的邊框不斷在閃
以下方法可以令表格的邊框不斷在閃,很實用的
在BODY區(qū)加上
<table border="0" width="280" id="myexample" style="border:5px solid yellow">
<tr>
<td>加入任意的物件.加入任意的物件.
<br>加入任意的物件.加入任意的物件.
<br>加入任意的物件.加入任意的物件.</td>
</tr>
</table>
<script language="JavaScript1.2">
<!--
function flashit(){
if (!document.all)
return
if (myexample.style.borderColor=="yellow")
myexample.style.borderColor="lime"
else
myexample.style.borderColor="yellow"
}
setInterval("flashit()", 500)
//-->
</script>
41.普通表格
<table border="1" width="220" style="position: absolute; left: 11; top: 11" height="26" >
<tr>
<td width="100%">普通表格</td>
</tr>
</table>
42.正立方表格
<table border="1" width="220" bordercolorlight="#eeeeee" bordercolordark="#000000" style="position: absolute; left: 10; top: 49" height="26">
<tr>
<td width="100%">正立方表格</td>
</tr>
</table>
43.細表格
<table border="0" frame=vsides width="219" bgcolor="#000000" cellspacing="1" cellpadding="0" height="22" style="position: absolute; left: 11; top: 86">
<tr bgcolor="#FFFFFF">
<td width="100%" height="2">細表格</td>
</tr>
</table>
44.立體表格
<table border="1" width="220" bordercolorlight="#ffffff" bordercolordark="#ffffff" style="position: absolute; left: 10; top: 112" height="34">
<tr>
<td width="100%" bgcolor="#B7B7B7" bordercolorlight="#000000" bordercolordark="#eeeeee" >立體表格</td>
</tr>
</table>
45.無名表格
<table width="220" align="center" style="position: absolute; left: 246; top: 12" height="51">
<tr>
<td><fieldset style="width:220" align="center"> <legend> 無名表格 </legend> <p align="right"> </fieldset> <br>
</td>
</tr>
</table>
46.表中表效果Ⅱ
<table width="220" align="center" style="position: absolute; left: 245; top: 89" height="110"> <tr> <td height="75"><fieldset style="width:220" align="center"> <legend> 表中表效果Ⅱ </legend> <table frame="hsides" border="1" bordercolorlight="#000000" bordercolordark="#ffffff" width="100%" cellspacing="1" cellpadding="0" height="78"> <tr bgcolor="#ffffff"> <td width="100%" height="76"></fieldset></td> </tr> </table>
47.表中表效果Ⅰ
<table width="220" align="center" style="position: absolute; left: 10; top: 120" height="138" cellspacing="1" cellpadding="0">
<tr>
<td height="126"><fieldset style="width: 220; color: #B7B7B7; border-style: groove" align="center"> <legend style="color: #FFFFFF; border: 1 solid #808080" > <font color="#000000">表中表效果Ⅰ</font> </legend> <p align="right"> </fieldset>
</td>
</tr>
</table>
48.表格中邊框的顯示
只顯示上邊框 <table frame=above> 只顯示下邊框 <table frame=below> 只顯示左、右邊框 <table frame=vsides> 只顯示上、下邊框 <table frame=hsides> 只顯示左邊框 <table frame=lhs> 只顯示右邊框 <table frame=rhs> 不顯示任何邊框 <table frame=void>
把邊框變成虛線
<table width="200" cellspacing="0" cellpadding="0"> <tr align="center"> <td style="BORDER-top: rgb(0,0,0) 1px dotted; BORDER-bottom: rgb(0,0,0) 1px dotted; BORDER-left: rgb(0,0,0) 1px dotted; BORDER-right: rgb(0,0,0) 1px dotted">細</td> <td style="BORDER-top: rgb(0,0,0) 1px dotted; BORDER-bottom: rgb(0,0,0) 1px dotted; BORDER-right: rgb(0,0,0) 1px dotted">表</td> </tr> <td style="BORDER-bottom: rgb(0,0,0) 1px dotted; BORDER-left: rgb(0,0,0) 1px dotted; BORDER-right: rgb(0,0,0) 1px dotted">線</td> <td style="BORDER-bottom: rgb(0,0,0) 1px dotted; BORDER-right: rgb(0,0,0) 1px dotted">格</td> </tr> </table> 立體感的表格
<table border="1" bordercolorlight="#ffffff" bordercolordark="#ffffff" width="200" cellpadding="0" cellspacing="0"> <tr align="center"> <td bgcolor="#B7B7B7" bordercolorlight="#000000" bordercolordark="#eeeeee" >立</td> <td bgcolor="#B7B7B7" bordercolorlight="#000000" bordercolordark="#eeeeee" >表</td> </tr> <tr align="center"> <td bgcolor="#B7B7B7" bordercolorlight="#000000" bordercolordark="#eeeeee" >體</td> <td bgcolor="#B7B7B7" bordercolorlight="#000000" bordercolordark="#eeeeee" >格</td> </tr> </table> 常用的帖子代碼
1.如何在每段前加兩個空格?保守估計,90%以上的帖子內容里每段文字的開頭都沒有兩個空格,因為在記事本里寫好的空格在回復時會被過濾掉,加空格的方法是在前面加上 就可以了。 2.其它符號的使用。如果你在帖子里要引用<font></font>,如果直接回復就會被解析。解決的方法是把 < 換成 < 即可。
1.加入MP3的方法: [mp=200,22]http://user.hjenglish.com/hjmusic/homlee/couldone.mp3[/mp] 不自動播放的方法: <EMBED src="http://user.hjenglish.com/hjmusic/homlee/couldone.mp3" width=300 height=50 type=audio/x-pn-realaudio-plugin controls="ControlPanel,statusbar" autostart="false"> </EMBED>
2.無邊框,有顏色的語法: <TABLE borderColor=#800000 cellSpacing=0 width="100%" bgColor=#000000 border=0><TBODY><TR><TD> 無邊框有背景顏色語法 </TD><BR></TR></TBODY></TABLE>
3.背景圖片+圖片方法: <TABLE align=center background=背景圖片網址 border=6 cellSpacing=2 borderColor=#1E90FF width=500><TBODY><TR><TD>文章</TD><*/TR></TBODY></TABLE>
4.字體后面加入背景色 <font style="BACKGROUND-COLOR: #af3f83" color="#e44e8a">字體后加背景語法</font> style="BACKGROUND-COLOR: #af3f83"(背景顏色) color="#e44e8a"(字體顏色)
5.有邊框且有底色方法: <table borderColor="#000000" cellSpacing="2" cellPadding="3" width="100%" bgColor="#0997f7" border="10"><tbody><tr><td>有邊框且有底色的語法:舉例一 </td></tr></tbody></table>
6.懸浮窗口,但是點擊不彈出哦: <DIV STYLE="cursor:arrow;filter : progidXImageTransform.Microsoft.Glow(Color=#1E90FF,Strength=#1);padding:8px;position:absolute;width:200px;height:40.7px;border:0 solid #FFF8DC;top:(eval(document.body.scrollTop)+eval(document.body.clientHeight)-120);left:(eval(document.body.scrollLeft)+eval(document.body.clientWidth)-280);text-align:center;"><FONT STYLE="color:#FFF8DC;font-size:12px;font-weight:bold;">
一切與答題無關的回復刪除并且扣除滬元50 參與獎勵60滬元 B-)<FONT></DIV>
7.只有回復才能瀏覽的代碼: [replyview] 1.You′ve been keeping me warm 2.I try to be strong but you′ll never be more wanted 3.To sweet beginnings and bitter endings [/replyview]
8.插入FLash的方法: <EMBED style="LEFT: 50px; WIDTH: 600px; POSITION: absolute; TOP: 900px; HEIGHT: 550px" align=right src=http://www./tmswf/47.swf width=1000 height=560 type=application/octet-stream wmode="transparent" quality="high" ;;></FONT>
9.隱藏播放器的方法: <embed src="http://user.hjenglish.com/hjmusic/homlee/couldone.mp3" hidden="true" type="audio/mpeg" loop="true" autostart="true" width="128" height="128">
10.引用網頁方法: <BR><BR><IFRAME marginWidth=0 marginHeight=0 src="http://www.hjenglish.com/hjmusic/homlee/htm/lina.htm" frameBorder=0 width="100%" scrolling=auto height=1500></IFRAME>
11.單個圖片的方法: <img src=http://圖片地址 width=500 height=375>
12.將左右分為兩欄:(編排比較好看,空間利用率高): <table align=right width=300><td> </td></table>
13.引用網頁框架: <iframe src="http://被引用網頁"; width="100%" height="1650" frameborder=0 scrolling=no></iframe>
14.虛線框入文字: (可以左右分) <td style="BORDER: #cccccc 1px dotted; padding:10; FONT-SIZE: 12px" width="100%" align=left border=0 bgColor=#f3f3f3>每年的十月三十一日。<br><br>但萬圣節(jié)的各種相關活動會從10月底開始,一直延續(xù)到11月初。</td>
15.跳轉到下一個鏈接點: <a href="#jump-test">跳轉到下一個"鏈接點"</a><> <a name="jump-test">下一個鏈接點</a>
16.文字的分區(qū)(Division)顯示 :
<div align=left> ... </div> (left right center)
17.使題目動起來: (1)循環(huán)左移:<marquee>[現(xiàn)場直播]有獎征文評審暨頒獎典禮</marquee> (2)左右彈撞:<marquee behavior="alternate">[現(xiàn)場直播]有獎征文評審暨頒獎典禮</marquee>
18.友情鏈接
<a href=http://www./new/techforum/ArticlesList.asp?idWriter=72652&Key=346787081&art=0&idItem=71><font color=green>腦筋急轉彎</font></a>
19.自下而上滾動文字: <marquee align=center scrollAmount="2" direction="up" width="200" height="400"> ......需要添加的文字..... </marquee>
20.圖片左右滾動: <marquee direction="left" height=120 scrollamount=-1 width="100%"> </marquee>
21.文字特效 <CENTER><FONT style="COLOR: #e4dc9b; FILTER: shadow(color=black); FONT-FAMILY: 華文彩云; FONT-SIZE: 30pt; LINE-HEIGHT: 150%; WIDTH: 100%"><B>數到三就不哭</B></FONT></CENTER>
<CENTER><FONT style="COLOR: #e4dc9b; FILTER: glow(color=black); FONT-FAMILY: 華文彩云; FONT-SIZE: 30pt; LINE-HEIGHT: 150%; WIDTH: 100%"><B>數到三就不哭</B></FONT></CENTER>
<CENTER><FONT color=#0099ff style="FILTER: blur(add=1, direction=40,strength=10); FONT-SIZE: 30px; FONT-WEIGHT: bolder; POSITION: relative; LINE-HEIGHT: 150%; WIDTH: 450px">數到三就不哭</FONT></CENTER>
22.圖片蝴蝶翩翩飛 <MARQUEE behavior=alternate direction=up height=300 width=130><img src=http://bbs./UploadFile/2004-6/20046733350553.gif></MARQUEE><FONT color=orange><MARQUEE behavior=alternate direction=up height=250 width=130><img src=http://bbs./UploadFile/2004-6/20046733350553.gif></MARQUEE><FONT color=Fuchsia><MARQUEE behavior=alternate direction=up height=300 width=130><img src=http://bbs./UploadFile/2004-6/20046733350553.gif></MARQUEE><FONT color=olive><MARQUEE behavior=alternate direction=up height=250 width=130><img src=http://bbs./UploadFile/2004-6/20046733350553.gif></MARQUEE>
23.飛翔的廣告: <script language="javascript">move_ad('gongwuyuan .gif','http://222.28.138.125/besti/dispbbs.asp?boardID=27&ID=13327&page=1','150','175');fix_up_ad('banzhu.gif','150','60','http://222.28.138.125/besti/dispbbs.asp?boardID=27&ID=10961&page=1');</script><!--頁面結束部分-->
24.圖片中插入飛翔flash: <TABLE height=482 width=400 border=\"1\" cellpadding=\"1\" cellspacing=\"1\" bordercolorlight=\"#008B8B\" bordercolordark=\"#008B8B\" background=http://www./ipb/uploads/11/post-142-1101792948.jpg><TBODY><TR><TD><EMBED src=http://218.75.24.92/clcq/flashtm/26.swf width=400 height=482 type=application/x-shockwave-flash quality=high wmode=transparent>
</TD></TR></TBODY></TABLE>
25.超大字體正楷: 原代碼:< align=center><FONT style="FONT-SIZE: 55pt; FILTER: shadow(color=apar); WIDTH: 100%; COLOR: #00ff00; LINE-HEIGHT: 100%" face=漢鼎繁隨意 size=6>數到三就不哭</FONT><FONT style="FONT-SIZE: 55pt; FILTER: shadow(color=apar); WIDTH: 100%; COLOR: #ff00ff; LINE-HEIGHT: 100%; FONT-FAMILY: 漢鼎繁中變" size=6></FONT><FONT color=#ff00ff> </FONT></P> 移動代碼
<MARQUEE scrollAmount=1 direction=up><P align=center> <FONT color=#ffddaa size=4>安德烈.瑞歐在專輯《愛在世界的每個角落》再度以他獨特的編曲技法,融合古典與輕音樂大樂團的演出方式,演出一首又一首世人耳熟能祥的樂曲。選曲切合專輯的名稱,從奧斯卡金曲〈世事當如此〉,到俄羅斯民謠〈黑眼珠〉;從維也納圓舞曲〈風流寡婦〉,到法國香頌經典〈巴黎天空下〉,每一首都是深具代表性與地方色彩的動人樂曲,欣賞這張專輯,樂迷更能深入體會到「音樂無國界」的意義。</MARQUEE> 漸隱的播放器
<TABLE style="FILTER: Alpha(Opacity=100, FinishOpacity=0, Style=3, StartX=20, StartY=60, FinishX=0, FinishY=0)gray(); WIDTH: 330px; HEIGHT: 24px"> <TBODY> <TR>
<TD><EMBED style="FILTER: invert()" align=left src=http://www.616bbs.com/picture/by/纏綿/纏綿.wma width=330 height=24 type=audio/mpeg Kern - The Winding Path 32-01.wma loop="-1" autostart="true" volume="0" ShowStatusBar="1" louie.mp3 Louie.mp3 Amo.WMA Ti Che Dirti Pausini--Volevo></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE> |