js留言簿代碼,js留言板

本文目錄一覽:

QQ空間留言代碼怎麼用~?

1.qq空間皮膚背景代碼:QQ空間不用Q幣更換主頁皮膚方法

下面是更換QQ皮膚的新代碼(2005年11月29日測試可用):

img src=”javascript:document.getElementById(‘Mlogo’).style.background=’url(http://頂部一條圖片地址)’;document.getElementById(‘all’).style.background=’url(http://背景圖片地址)’;”

如果你不想改頂部圖片條的話只要這樣就夠了:

img src=”javascript:document.getElementById(‘all’).style.background=’url(http://背景圖片地址)’;”

設置頂部圖片條透明度:

img src=”javascript:Mlogo.style.filter=’alpha(opacity=30)’;”

把30用0-100中喜歡的不透明度代替。100為不透明,0為完全看不見的透明。

我們只要把上面代碼中的兩處“圖片地址”,更改你自己喜歡的皮膚地址,就可以了,同樣代碼都是加到評論里,(提醒:代碼中有兩處地址,都要改, 那些代碼是要放在新建的模塊(當然,也可以在你原有的新建模塊里增加一個項目)里的評論里的(自定義-個性模塊--新建模塊-板塊名稱-網頁對話筐-評論-(圖片欄和地址欄的http要刪除) -點個保存方式-保存-關於做出來得模塊,我們要隱藏它)

那麼要怎麼樣才知道皮膚的網絡地址呢?

首先 我們先進入:QQ個人空間—裝扮空間-皮膚-看到自己自己喜歡的皮膚點右鍵-屬性-可以看到皮膚地址(請注意那並不是放入皮膚代碼的皮膚網絡地址)

例如,網絡位置:

比如上圖-現在:我們右鍵點皮膚小圖片的,屬性,看地址那攔,對照一下和皮膚網絡位置的地址有什麼區別,嘻嘻~看出來了吧,pre/2/50.gif和orig/2/50.gif不一樣哦,也就是說只要我們把裝扮空間里的皮膚地址里的pre—改為orig

例如: (商場裝扮空間里的皮膚展示的地址)

改為:(實際的皮膚圖片地址)

注意:由於騰訊QQ空間方面做了限制,通過以上方法得到的皮膚圖片地址如果直接用到代碼裡面是無法顯示的。

免費的東西難道又沒得用了?有一個方法,如果我們把皮膚圖片文件下載下來,上傳到別的網頁空間再調出來,是可以顯示的。例如上面這個,上傳到本站,得到地址:,所以,代碼就是:

img src=”javascript:document.getElementById(‘all’).style.background=’url()’;”

你可以用以上方法下載了QQ空間里的圖片文件後上傳到免費的網頁空間去(例如論壇、博客等)得到圖片文件的地址。當然,你也可以用你在網頁上看到的任何圖片做皮膚,看到喜歡的圖片點右鍵-屬性-地址-複製,OK,HOHO,喜歡什麼皮膚想換就換,很簡單吧~

2.QQ空間代碼之QQ空間導航代碼

什麼是QQ空間導航?看右邊這個圖,就是“主頁”、“日誌”這些東西,每個人的都一樣,是不是很沒有個性啊?好的,就改改他。先看這個自定義字的導航代碼:

img src=”javascript:bt_1.innerText=’主 頁’;bt_2.innerText=’日記簿’;bt_3.innerText=’音樂廳’;bt_4.innerText=’留言簿’;bt_5.innerText=’相冊集’;bt_6.innerText=’過家家’;bt_7.innerText=’主人家’;bt_8.innerText=’誰踩我’;”

這代碼裡面的中文字可以隨便改,但是不要超過3個中文字,多了就不好看了。

是不是覺得文字的還不過癮,好,下面來看FLASH的。先來看全屏顯示的FLASH的代碼:

img src=”javascript:document.getElementById(‘Mlogo’).innerHTML+=’div style=\’position:absolute;top:0;left:0;\’EMBED src=\’地址\’ quality=high wmode=\’transparent\’ WIDTH=\’925\’ HEIGHT=\’655\’ TYPE=\’application/x-shockwave-flash\’/div’;”

這個代碼里“WIDTH=\’925\’ HEIGHT=\’655\’”是FLASH的寬度和高度,可根據FLASH的大小和位置以及在QQ空間出現的地方調整,“\’地址\’”就是FLASH導航文件的地址,這個地址去那裡找呢?網上有很多,我找了一個做示範,看這個地址:,那麼代碼就是:

img src=”javascript:document.getElementById(‘Mlogo’).innerHTML+=’div style=\’position:absolute;top:0;left:0;\’EMBED src=\’\’;;;;;;;; quality=high wmode=\’transparent\’ WIDTH=\’925\’ HEIGHT=\’655\’ TYPE=\’application/x-shockwave-flash\’/div’;”

上面的這個導航是放在右邊的,如果是放在上面的導航條,例如這個:,那 HEIGHT 選65就可以了,代碼為:

img src=”javascript:document.getElementById(‘Mlogo’).innerHTML+=’div style=\’position:absolute;top:0;left:0;\’EMBED src=\’\’;;;;;;;; quality=high wmode=\’transparent\’ WIDTH=\’925\’ HEIGHT=\’65\’ TYPE=\’application/x-shockwave-flash\’/div’;”

如果你想將原來的導航條去掉,請看清除導航條代碼:

img src=”javascript:bt_1.style.display=’none’;bt_2.style.display=’none’;bt_3.style.display=’none’;bt_4.style.display=’none’;bt_5.style.display=’none’;bt_6.style.display=’none’;bt_7.style.display=’none’;bt_8.style.display=’none’;” style=”display:none;”

假如有人只想去掉其中一個或多個導航,可以這樣改,舉個例子:比如去掉迷你屋,按順序來排的話迷你屋的序號是6,所以,可以將代碼改成:

img src=”javascript:bt_6.style.display=’none'” style=”display:none;”

如果你想將設置頂部圖片去掉,騰出空間放導航條,可用請看代碼:

img src=”javascript:Mlogo.style.filter=’alpha(opacity=0)’;”

注意:去掉以後就看不到“自定義”三個字了,如果你想修改QQ空間的話,就朝大概的那個位置點移動鼠標,看見鼠標變成了可以點擊的圖案就可以了。不要告訴我你大概都不在哪裡吧?

如果想重新顯示導航條和頂部圖片,將代碼刪除就可以了。

以下是筆者整理出來的QQ空間的部分FLASH導航條,歡迎大家選用:

使用方法:

在空間首頁選擇自定義,再點建立新模塊,然後把代碼寫在“評論”這一欄里,其他的可以全部不填。可以參考里QQ空間皮膚代碼里的使用說明,是一樣的。

3.QQ空間代碼之QQ空間透明Flash背景代碼

先來看全屏顯示的FLASH的代碼:

img src=”javascript:document.getElementById(‘Mlogo’).innerHTML+=’div style=\’position:absolute;top:0;left:0;\’EMBED src=\’地址\’ quality=high wmode=\’transparent\’ WIDTH=\’925\’ HEIGHT=\’655\’ TYPE=\’application/x-shockwave-flash\’/div’;”

WIDTH:透明FLASH寬度

HEIGHT:透明FLASH高度

top:透明FLASH與空間頂端的距離

left:透明FLASH與空間左端的距離

以上參數可根據FLASH的大小和位置以及在QQ空間出現的地方調整,不過要想全屏顯示的就話就用上面的參數就可以了。這個代碼里其實和QQ空間導航代碼里的是一樣的,只是用途不同,找到合適的FLASH地址就可以了。這個地址去那裡找呢?網上有很多,我找了一個做示範,看這個地址:,那麼代碼就是:

img src=”javascript:document.getElementById(‘Mlogo’).innerHTML+=’div style=\’position:absolute;top:0;left:0;\’EMBED src=\’\’;;;;;;;; quality=high wmode=\’transparent\’ WIDTH=\’925\’ HEIGHT=\’655\’ TYPE=\’application/x-shockwave-flash\’/div’;”

以下是筆者整理出來的QQ空間的部分透明FLASH地址,就不介紹了,大家自己看,喜歡就拿去。

性感的唇

蒲公英

螞蟻

藍色的水

雪花飄

雪花飄

楓葉飄

黑客帝國

煙花

漂亮

跟着鼠標動的煙火

時間

跟着鼠標走的魚

眼鏡

下雨了

跟着鼠標的白色花

楓葉

使用方法:

在空間首頁選擇自定義,再點建立新模塊,然後把代碼寫在“評論”這一欄里,其他的可以全部不填。可以參考里QQ空間皮膚代碼里的使用說明,是一樣的

空間代碼使用步驟:

1、去掉不要的模塊:

“自定義”–“個性設置”–“模塊管理”點了之後有一個窗口出來,把不想顯示的模塊前的“√”去掉,然後“提交”,如果你想要原來的默認設置,這個步驟可以省略。

2、新建一個模塊:

“自定義”–“個性設置”–“新建模塊”點了之後有一個窗口出來,是給模塊起名字的,這個你自己想了,例如“代碼”。起好模塊名字,“提交”後就出另外一個窗口了。

3、填代碼:

在這個新出來的窗口裡找到“評論”這個項,在裡面填入以上代碼。(圖片欄和地址欄的http如果不需要可以刪除)

4、保存!

5、繼續填加代碼:

如果還有其他代碼填加,增加一個項目就可以了,點擊“+”就可以繼續添加其他代碼。

6、修改或刪除代碼:

點擊“修改”或“刪除”就可以了。注意:有的代碼添加後再修改會出現無法加入的現象,建議刪除後再添加。

7、隱藏代碼模塊:

添加鼠標、掛件、導航的等這些代碼的模塊是不需要顯示的,怎麼樣把它隱藏起來呢?有的網友在“模塊管理”里把它去掉了,這樣是看不見了,但是代碼的效果也沒有了。把它隱藏起來有兩個方法。

一個是把它放到邊上去,這樣就看不到了。在“自定義”模式下,用鼠標左鍵點這模塊不放,移動鼠標,把該模塊拖到邊上去。看右圖,這是拖到右邊一半的效果,繼續往裡面移動就可以了。

另一個方法是用其他大的模塊把這個小的模塊遮住,方法同上,移動到大模塊後面去就可以了。

如果隱藏了模塊後想修改又拖拉不出來,可以使用“還原默認”恢復,或者刪除這個模塊後再添加。

歡迎參觀

HTML留言簿代碼 如圖

如果只是html的靜態頁面 代碼如下

table border=1

caption留言薄/caption

tr

td姓名:/td

tdinput type=’text’ //td

/tr

tr

td電話:/td

tdinput type=’text’ //td

/tr

tr

tdEmail地址:/td

tdinput type=’text’ //td

/tr

tr

td留言:/td

tdtextarea rows=”10″ cols=”30″ /textarea/td

/tr

trtd colspan=”2″ align=’center’input type=’button’ value=’提交’ / input type=’button’ value=’清除’ //td/tr

/table

求一個留言板代碼,直接用HTML、JS完成的!可以保存數據

想要保存信息就必須要操作後台,靜態網頁時無法

保存數據的,就算一時保存了下來,還是會隨着網頁

的關閉,數據還是會消失的,明白?

我暈!

那還是一樣的性質,只是數據庫文件變成了XML文件罷了

請flash高手幫忙

font color=#FF0000 onclick=javascript:customCss();個人主頁管理/font

播放器

iframe id=”xiseframe” border=”0″ vspace=”0″ hspace=”0″ marginwidth=”0″ marginheight=”0″

framespacing=”0″ frameborder=”0″ scrolling=”no” width=”149″ height=”50″

src=””/iframe

透明5Q網址

style#topFuncNavi{background:transparent;Filter:alpha(opacity=0);}/style

透明導航

style.af,.afa,.afb,#affiche, #menu, #contNavi, #data, #datahead, #manage, #activity,

#members, #mhead, #mlist, #hot, #hothead, #hotlist, #loph, #lophead, #loplist,#footer

{background:none;}#hotlist{filter:alpha(opacity=60);}/style

透明相冊邊框

style

#mainInfo{background:none;}

/style

改變各欄顏色

style

#detailInfo th{ color: #2AF853; } /*學校,院系等文本的顏色*/

#detailInfo h4{ color: #2AF853; } /*”基本信息”和”我喜歡”*/

#newEvent li{ color: #000000; } /*日記的日期顏色*/

#newEvent li a{ color: #11FFFF; } /*日記鏈接的顏色*/

#msgList a.btn{ color: #20519C; } /*留言中”刪除”,”編輯”,”引用”等*/

#msgList p.msg_act{ color: #000000; } /*留言日期的顏色*/

/style

背景加鼠標

style

body{background:url() no-repeat

fixed ;cursor:url();}#bgAll{filter:alpha

(opacity=0);}#banner{filter:alpha(opacity=0);}/style

改變主頁滑塊顏色

style

html{scrollbar-face-color:#70F5F5;scrollbar-highlight-color:#CEFDFD;scrollbar-shadow-

color:#000000;scrollbar-3dlight-color:#c0c0c0;scrollbar-arrow-color:#808080;scrollbar-track

-color:#c0c0c0;scrollbar-darkshadow-color:#808080;scrollbar-base-color:#FF9035;}

/style

給留言加滑塊

style

#msgList{position:relative;top:-2px;padding-top:0px;padding-left:0px;padding-bottom:-

2px;padding-right:0px;overflow-y:auto;overflow-x:auto;width:458px;height:1067px;scrollbar-

arrow-color:#F8FC30;scrollbar-face-color:#A3F5F5;scrollbar-darkshadow-

color:#0098F8;scrollbar-highlight-color:#F8FCF8;scrollbar-3dlight-color:#0098F8;scrollbar-

shadow-color:#0098F8;scrollbar-track-color:#D5F7F7;}/style

改變導航字體

style.af,.afa,.afb,#affiche, #menu, #contNavi, #data, #datahead, #manage, #activity,

#members, #mhead, #mlist, #hot, #hothead, #hotlist, #loph, #lophead, #loplist,#footer{FONT-

STYLE:italic;color:#0909F7;}/style

在主頁的頭像下面有幾個”加為好友” “關注用戶”等按鈕.通常在瀏覽自己的網頁時,是看不到的,但在他

人瀏覽時卻又時常影響頁面的效果。以下代碼是將按鈕透明化,既不影響頁面的美關,又不影響其功能。

style

a.btnA.add{background-image:url

();filter:alpha(opacity=50)}

a.btnA.lword{background-image:url

();filter:alpha(opacity=50)}

a.btnA.msg{background-image:url

();filter:alpha(opacity=50)}

a.btnA.att{background-image:url

();filter:alpha(opacity=50)}

a.btnA.block{background-image:url

();filter:alpha(opacity=50)}

a.btnA.anti{background-image:url

();filter:alpha(opacity=50)}

/style

激活5Q管理器

scriptdocument.all[‘contNavi’].innerHTML+=”|  a xx=customCss();’5q的

個人主頁管理/a”;/script

透明邊框

style.partHeader{background:none;}/style

FLASH

CENTEREMBED style=”RIGHT: -165px; POSITION: absolute; TOP:-800px” align=right

src= width=1000 height=1200 type=application/x-

shockwave-flash wmode=”transparent” quality=”high”;

CENTEREMBED style=”RIGHT: -150px; POSITION: absolute; TOP:-1500px” align=right

src= width=4000 height=4000 type=application/x-

shockwave-flash wmode=”transparent” quality=”high”;

CENTEREMBED style=”RIGHT: -150px; POSITION: absolute; TOP:-350px” align=right

src= width=4000 height=4000 type=application/x-

shockwave-flash wmode=”transparent” quality=”high”;

CENTEREMBED style=”RIGHT: -165px; POSITION: absolute; TOP:-500px” align=right

src= width=1000 height=1200 type=application/x-

shockwave-flash wmode=”transparent” quality=”high”;

透明留言簿以及修改導航字體背景顏色,修改朋友圈子字體顏色

style

#contNavi{

background:none;

color:#fff;

border:1px solid #4B6DF9;

}

#contNavi a{

color:#fff;

}

#contNavi .curr{

background:none;color: #fff;

}

#contNavi a:hover{

background:none;

color: #000000;

text-decoration:underline;

}

#mainInfo{

background:none; }

.beRTE{filter:alpha(opacity=25);} #newEvent li a{ color: #3A60F9; }

#friendList a{color:#3A60F9}

#groupList a{color:#3A60F9}

#mainInfo h4

color: #FFFFFF;

filter:Glow(color:#FDF3A6,stength:1);width:100%;Shadow(color:#fff,direction:0);

}

/style

螢火蟲

CENTEREMBED style=”RIGHT: 10px; POSITION: absolute; TOP: -120px” align=right src=

width=1200 height=1000 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;/CENTER

蝴蝶

CENTEREMBED style=”RIGHT: 10px; POSITION: absolute; TOP: -120px” align=right src=

width=1200 height=1000 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;/CENTER

金魚

CENTEREMBED style=”right: 0px; POSITION: absolute; TOP: -100px” align=right src= width=1000 height=1000 type=application/x-shockwave-flash

wmode=”transparent” quality=”high” ;/CENTER

鬼火

CENTEREMBED style=”RIGHT: 10px; POSITION: absolute; TOP: -120px” align=right src= width=1200 height=1000 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;/CENTER

漫天落星星的代碼:

EMBED style=”RIGHT: 0px; POSITION: absolute; TOP: -350px” align=right src= width=1200 height=1950 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;

/CENTER

8.留言簿加滾動條代碼

style

#msgList{position:relative;top:-2px;padding-top:0px;padding-left:0px;padding-bottom:-2px;padding-right:0px;overflow-y:auto;overflow-x:auto;width:450px;height:800px;scrollbar-arrow-color:#F8FC30;scrollbar-face-color:#0098F8;scrollbar-darkshadow-color:#0098F8;scrollbar-highlight-color:#F8FCF8;scrollbar-3dlight-color:#0098F8;scrollbar-shadow-color:#0098F8;scrollbar-track-color:#F8FCF8;}

9.主頁滾動條加顏色

style

html{scrollbar-face-color:#010101;scrollbar-highlight-color:#808080;scrollbar-shadow-color:#000000;scrollbar-3dlight-color:#c0c0c0;scrollbar-arrow-color:#808080;scrollbar-track-color:#c0c0c0;scrollbar-darkshadow-color:#808080;scrollbar-base-color:#FF9035;}

/style

蘭色字的地方可改為自己喜歡的顏色

10.金魚代碼:

CENTEREMBED style=”RIGHT: 10px; POSITION: absolute; TOP: -100px” align=right src= width=1200 height=1500 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;/CENTER

11.漫天落星星的代碼:

EMBED style=”RIGHT: 0px; POSITION: absolute; TOP: -350px” align=right src= width=1200 height=1950 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;

/CENTER

12.QQ留言(代碼)

a target=blank href=;Uin=自己的QQ號Site=spohome.blogchina.comMenu=yesimg border=”0″ SRC= alt=”有事兒您Q我!”/a

13.可自定義歌曲簡潔漂亮的播放器

進入以下網站進行註冊,然後會有說明,根據他的步驟進行就可以咯!可以自定義歌曲,添加自己喜歡的歌曲.

1)主頁Flash動畫

素材;userId=200709762diaryno=200366301

EMBED style=”RIGHT: 0px; POSITION: absolute; TOP: -340px” align=right src=

width=1200 height=1550 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;

/CENTER

播放器代碼:

1

div style=”position:absolute;top:-260px;right:1px;”EMBED src=”” width=450 height=320 type=application/x-shockwave-flash wmode=”transparent” quality=”high” loop=”ture” menu=”false”/EMBED/div

2

EMBED src=”” width=”220″ height=”210″ type=”application/x-shockwave-flash” align=”center” wmode=”transparent” quality=”high” /EMBED

3

script src=;/script

FLSH背景動畫

1金魚

CENTEREMBED style=”right: 0px; POSITION: absolute; TOP: -100px” align=right src= width=1200 height=1000 type=application/x-shockwave-flash

wmode=”transparent” quality=”high” ;/CENTER

2下落的星星

EMBED style=”RIGHT: 0px; POSITION: absolute; TOP: -280px” align=right src= width=1200 height=1950 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;

3流星

CENTEREMBED style=”RIGHT: 0px; POSITION: absolute; TOP: -1050px” align=right src= width=1200 height=1950 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;/EMBED /CENTER

4飄動的楓葉

EMBED style=”LEFT: 250px; WIDTH: 400px; POSITION: absolute; TOP: 200px; HEIGHT: 300px” align=right src= width=400 height=400 type=application/octet-stream ;; quality=”high” wmode=”transparent”/EMBED

5飄落的玫瑰花

CENTEREMBED style=”RIGHT: 300px; WIDTH: 600px; POSITION: absolute; TOP: 0px; HEIGHT: 1800px” align=right src= type=application/octet-stream ;; quality=”high” wmode=”transparent” /CENTER

6下雪

EMBED style=”RIGHT: 0px; POSITION: absolute; TOP: -340px” align=right src= width=1200 height=1950 type=application/x-shockwave-flash wmode=”transparent” quality=”high” ;

掛件

7藍蝴蝶

DIV id=kongfu style=”RIGHT: 10px; POSITION: absolute; TOP: -100px”IMG src=”” border=0/A/DIV

最新可愛鐘錶在線時間免費代碼

iframe scrolling=”no” frameborder=”0″ width=”180″ height=”198″ src=”” allowtransparency=”true”/iframe

樣式二:

iframe scrolling=”no” frameborder=”0″ width=”180″ height=”121″ src=”” allowtransparency=”true”/iframe

樣式三:

iframe scrolling=”no” frameborder=”0″ width=”180″ height=”126″ src=”” allowtransparency=”true”/iframe

樣式四:

iframe scrolling=”no” frameborder=”0″ width=”180″ height=”152″ src=”” allowtransparency=”true”/iframe

樣式五:

iframe scrolling=”no” frameborder=”0″ width=”180″ height=”75″ src=”” allowtransparency=”true”/iframe

樣式六:

iframe scrolling=”no” frameborder=”0″ width=”180″ height=”195″ src=”” allowtransparency=”true”/iframe

樣式七:

iframe scrolling=”no” frameborder=”0″ width=”180″ height=”134″ src=”” allowtransparency=”true”/iframe

樣式八:

iframe scrolling=”no” frameborder=”0″ width=”180″ height=”147″ src=”” allowtransparency=”true”/iframe

EMBED pluginspage= src= width=160 height=62 type=application/x-shockwave-flash quality=”high”/EMBED/OBJECT

DIV/DIV

FLSHE播放器代碼script language=jscript.encode src=;/script

背景音樂

bgsound src=”

” loop=”-1″

style#glowtext{filter:glow(color=red,strength=2);width:100%;}/style

scriptfunction glowit(which){if(document.all.glowtext[which].filters[0].strength==2) document.all.glowtext[which].filters[0].strength=1;else document.all.glowtext[which].filters[0].strength=2};function glowit2(which){if (document.all.glowtext.filters[0].strength==2)document.all.glowtext.filters[0].strength=1; else document.all.glowtext.filters[0].strength=2};function startglowing(){if (document.all.glowtextglowtext.length){for (i=0;iglowtext.length;i++);eval(‘setInterval(“glowit(‘+i+’)”,150)’)} else if (glowtext) setInterval(“glowit2(0)”,150)};if (document.all) window.onload=startglowing /script

div align=centerspan id=”glowtext” align=center style=”font-size:30″歡迎訪問〔個人主頁〕/span/div

流星雨:

DIVCENTEREMBED style=”RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1000px” align=right src=

type=application/octet-stream type=application/x-shockwave-flash ;; quality=”high” wmode=”transparent” /CENTER/DIV

下雨

DIV

CENTEREMBED style=”RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1000px” align=right src= type=application/octet-stream ;; quality=”high” wmode=”transparent” /CENTER/DIV

圖片朦朧

A.圓形效果

代碼: IMG src=”圖片” width=500 height=375 style=”filter:Alpha(opacity=100,style=2);”

B.方形效果

代碼: IMG src=”圖片” style=”FILTER: Alpha(opacity=200,style=3)” width=500 height=375 ALGIN=”MIDDLE”

飄舞的楓葉

EMBED style=”LEFT: 250px; WIDTH: 400px; POSITION: absolute; TOP: 200px; HEIGHT: 300px” align=right src= width=400 height=400 type=application/octet-stream ;; quality=”high” wmode=”transparent”/EMBED

飄落的黃花

DIVLOOP=”TRUE” AUTOSTART=”TRUE”EMBED style=”LEFT: 100px; WIDTH: 700px; POSITION: absolute; TOP: 480px; HEIGHT: 2700px” align=left src= width=700 height=500 type=application/octet-stream wmode=”transparent” quality=”high” ;;/EMBEDEMBED style=”LEFT: 160px; WIDTH: 660px; POSITION: absolute; TOP: 200px; HEIGHT: 700px” align=left src= width=600 height=100 type=application/octet-stream wmode=”transparent” quality=”high” ;;/EMBEDEMBED style=”RIGHT: 110px; WIDTH: 260px; POSITION: absolute; TOP: 460px; HEIGHT: 200px” align=right src= width=300 height=200 type=application/octet-stream wmode=”transparent” quality=”high” ;;/EMBEDBRBR/DIV

娃娃

EMBED style=”RIGHT: 300px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 600px” align=right src= type=application/octet-stream wmode=”transparent” quality=”high”/EMBED

從右側進來的字和圖片

DIV

TABLE cellSpacing=10 cellPadding=0 width=”100%” border=0

TBODY

TR

TD vAlign=top width=”100%”

DIV align=center

MARQUEE scrollDelay=99 width=”100%” height=108 border=”0”IMG src=””;FONT color=#b990f7FONT face=華文行楷 color=#4d4dff size=7B策劃大師/BIMG src=””;/FONT/FONT/MARQUEE/DIV/TD/TR/TBODY/TABLE/DIV

DIV

TABLE cellSpacing=10 cellPadding=0 width=”100%” border=0

TBODY

TR

TD vAlign=top width=”100%” height=118

DIV align=center

MARQUEE scrollDelay=99 width=”100%” height=108 border=”0”IMG src=””;FONT color=#b990f7FONT face=華文行楷 color=#4d4dff size=7B策劃大師歡迎你/BIMG src=””;/FONT/FONT/MARQUEE/DIV/TD/TR/TBODY/TABLE/DIV

星光

DIVCENTEREMBED style=”RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1000px” align=right src= type=application/octet-stream ;; quality=”high” wmode=”transparent” /CENTER/DIV

飛蜻蜓

DIVCENTEREMBED style=”RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1000px” align=right src= type=application/octet-stream wmode=”transparent” quality=”high” ;; /CENTER/DIV

光暈

DIVCENTEREMBED style=”RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1000px” align=right src= type=application/octet-stream wmode=”transparent” quality=”high” ;; /CENTER/DIV

漂動的星

DIVCENTEREMBED style=”RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1000px” align=right src= type=application/octet-stream wmode=”transparent” quality=”high” ;; /CENTER/DIV

向上的白色泡泡

DIVCENTEREMBED style=”RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 1000px” align=right src= type=application/octet-stream wmode=”transparent” quality=”high” ;; /CENTER

CENTEREMBED style=”RIGHT: 100px; WIDTH: 700px; POSITION: absolute; TOP: 0px; HEIGHT: 3000px” align=right src= type=application/octet-stream wmode=”transparent” quality=”high” ;; /CENTER

CENTEREMBED style=”RIGHT: 100px; WIDTH: 800px; POSITION: absolute; TOP: 0px; HEIGHT: 5000px” align=right src= type=application/x-shockwave-flash wmode=”transparent” quality=”high” /CENTER/DIV

倒帖的文字

p align=rightfont style=”font-size:50pt;filter:fliph(color=silver);width:100%; color:red;line-height:150%;font-family:華文行楷”b策劃大師歡迎您!/b/font/p

翻轉文字

font style=”font-size:50pt;filter:flipv(color=silver);width:100%; color:red;line-height:150%;font-family:華文行楷”b策劃大師歡迎您!/b/font

漂動文字

table align=center border=3 bordercolor=”#cd5c5c” width=450 height=350td background=;marquee behavior=alternate scrollamount=3 direction=down height=350marquee behavior=alternate scrollamount=3 width=500img src=1.giffont color=red size=6b策劃大師歡迎你的到來/bimg src=1.gif/font/marquee/tablebr

抖動的鬱金花、漂落的紅心、翻轉的蝴蝶

embed style=”left: 10px; width: 850px; position: absolute; top: 100px; height: 500px” align=right src= width=500 height=500 type=application/octet-stream wmode=”transparent” quality=”high” ;;/embedembed style=”left: 10px; width: 850px; position: absolute; top: 600px; height: 600px” align=right src= width=500 height=600 type=application/octet-stream ;; quality=”high” wmode=”transparent”/embedembed style=”left: 10px; width: 850px; position: absolute; top: 1100px; height: 500px” align=right src= width=500 height=500 type=application/octet-stream wmode=”transparent” quality=”high” ;;/embedembed style=”left:

原創文章,作者:ZRBT,如若轉載,請註明出處:https://www.506064.com/zh-hant/n/145944.html

(0)
打賞 微信掃一掃 微信掃一掃 支付寶掃一掃 支付寶掃一掃
ZRBT的頭像ZRBT
上一篇 2024-10-29 18:57
下一篇 2024-10-29 18:57

相關推薦

  • Python周杰倫代碼用法介紹

    本文將從多個方面對Python周杰倫代碼進行詳細的闡述。 一、代碼介紹 from urllib.request import urlopen from bs4 import Bea…

    編程 2025-04-29
  • JS Proxy(array)用法介紹

    JS Proxy(array)可以說是ES6中非常重要的一個特性,它可以代理一個數組,監聽數據變化並進行攔截、處理。在實際開發中,使用Proxy(array)可以方便地實現數據的監…

    編程 2025-04-29
  • Python字符串寬度不限制怎麼打代碼

    本文將為大家詳細介紹Python字符串寬度不限制時如何打代碼的幾個方面。 一、保持代碼風格的統一 在Python字符串寬度不限制的情況下,我們可以寫出很長很長的一行代碼。但是,為了…

    編程 2025-04-29
  • Python基礎代碼用法介紹

    本文將從多個方面對Python基礎代碼進行解析和詳細闡述,力求讓讀者深刻理解Python基礎代碼。通過本文的學習,相信大家對Python的學習和應用會更加輕鬆和高效。 一、變量和數…

    編程 2025-04-29
  • Python滿天星代碼:讓編程變得更加簡單

    本文將從多個方面詳細闡述Python滿天星代碼,為大家介紹它的優點以及如何在編程中使用。無論是剛剛接觸編程還是資深程序員,都能從中獲得一定的收穫。 一、簡介 Python滿天星代碼…

    編程 2025-04-29
  • 倉庫管理系統代碼設計Python

    這篇文章將詳細探討如何設計一個基於Python的倉庫管理系統。 一、基本需求 在着手設計之前,我們首先需要確定倉庫管理系統的基本需求。 我們可以將需求分為以下幾個方面: 1、庫存管…

    編程 2025-04-29
  • 寫代碼新手教程

    本文將從語言選擇、學習方法、編碼規範以及常見問題解答等多個方面,為編程新手提供實用、簡明的教程。 一、語言選擇 作為編程新手,選擇一門編程語言是很關鍵的一步。以下是幾個有代表性的編…

    編程 2025-04-29
  • Python實現簡易心形代碼

    在這個文章中,我們將會介紹如何用Python語言編寫一個非常簡單的代碼來生成一個心形圖案。我們將會從安裝Python開始介紹,逐步深入了解如何實現這一任務。 一、安裝Python …

    編程 2025-04-29
  • 怎麼寫不影響Python運行的長段代碼

    在Python編程的過程中,我們不可避免地需要編寫一些長段代碼,包括函數、類、複雜的控制語句等等。在編寫這些代碼時,我們需要考慮代碼可讀性、易用性以及對Python運行性能的影響。…

    編程 2025-04-29
  • 北化教務管理系統介紹及開發代碼示例

    本文將從多個方面對北化教務管理系統進行介紹及開發代碼示例,幫助開發者更好地理解和應用該系統。 一、項目介紹 北化教務管理系統是一款針對高校學生和教職工的綜合信息管理系統。系統實現的…

    編程 2025-04-29

發表回復

登錄後才能評論