1、微信公眾號自定義菜單跳轉到網頁,那個網頁要在哪裡製作
任何一個網站都可以,馬雲家的地址們都不支持。
用自己公司的網站就行,或者如果有精力,再做個H5規范的單頁或網站。
2、菜單之間的選項如何與按鈕鏈接到另外的頁面
幾種Action命令
1.影片的播放與停止:
Play( );//播放命令 stop( );//停止命令
2.改變Frame流向命令
gotoAndPlay(frame) //跳到指定的畫面並連續播放。
gotoAndStop(frame) //跳到指定的畫面並停止播放。
gotAndplay(「場景名稱」,frame)//跳到指定場景幀並連續播放。
gotoAndStop(「場景名稱:,frlme)//跳到指定場景幀並停止播放。
nextFrame( );//跳到下一幀播放;
PrevPrame( );//跳到上一幀播放。
3.控制影片剪輯的播放與停止:tellTarget命令
如:tellTarget(「C1」)
//跳影片剪輯實例C1的第2幀並停止。
二、幾種功能元件的製作方法
1.計時器的製作
單擊菜單Insert/new symbol,在彈出的對話框中輸入插入的符號名稱(如:計時器),確
定後選擇文字工具,屬性為動態(Dynamic text),在第一幀中畫兩個文本框。分別設置變
量名為munite和timer,在兩個文本框之間畫一個形如冒號的圓點(這兩個圓點可以做成一個
符號,類型為電影片段,每秒閃動一次.然後拖入到兩文本框之間。在第二幀插入幀。在
第一幀輸入動作腳本(Action)如下:
//設置時間的初值
if(!started) {
start_time=getTimer();
started=true;
timer=0;
i=o;
munite=0;
}
x=getTimer()-start_time;//計算時間的變化
x=int(x/1000); //時間的單位為1000分之一秒
y=x-60*i
if (y>59)
{i=i+1;munite=munite+1
timer=timer+1:
}
else
該符號製作完畢後。將其拖入主場景中即可。
2.智能判斷速擇題,並作正誤提示
單擊菜單Insert/new symbo1,在彈出的對話框中輸入插入的符名稱。如:「對錯提示」。
符號類型為「電影片段」。在第一幀輸入文本「在括弧內輸入答案,按enrer鍵確定「 在
該幀上輸入動作腳本:
_root.flah=false;_root.ans=" ";gotoAndStop(1);在第16幀插入空關鍵幀。在該幀上
畫一個形如「x」的圖或輸入文本「x」,在第30幀插入關鍵幀,幀AAction為_root.ans="
":gotoAndStop(31);在第31幀插人空白關鍵幀,在該幀上輸人靜態文本「請重作,按e
nter鍵確定。「在該幀輸入腳本:「stop();」至此,該符號製作主或:例如:
第1題:1十1十( )
A.2 B.3 C.4 D.0
在上例括弧位置插入動態文本框,不輸入任何內容。該文本框變數名為:ans。在該幀適當
位置插入電影「對錯提示」,該電影片斷名屬性為「ql」,在該電影片斷上輸人腳本:
//鍵盤事件控製程序
onClipEvent(keyDown)
}
//取得按鍵的鍵值
keycode=Key.getCode();
//判斷是否為Enter鍵
if(keycode==Key.ENTER) {
//判斷輸入的答案是否正確
//answer=Number(A)
if(_root,ans=="A" or _root.ans=="a"{
//顯示「答對了」信息
tellTsrget(_root.q1) {
gotoAndPlay(2);
}
} else {
//顯示「答錯了」信息
tellTarget(_root.q1) {
gotoAndplay(16)
}
}
}
}
3.聲音的載入和控制
插入一段音樂:在Pile/Import to Library中,找到要插入的音樂(如戰馬奔騰),打開符
號庫,找到「戰馬奔騰」符號,單擊右鍵,在彈出的菜單中單擊Linkage…命令,再在彈出
的菜單中選中Export for ActionSc選項,在Indentify框內輸入標識符:如music。
在需要播放的幀插入如下腳本:
soun=new Sound();//創建聲音實例
sound.attachSound("music");//將音樂music鏈接到sound實例
sound.start(0,2);//播放音樂2遍
sound.setVolume(70):該音樂的音量為70%。
以上載入音樂通過幀載入,也可以通過按鈕載入。
停止音樂的方法:製作一個按鈕,在按鈕上輸人腳本:
on(release)
{
sound.stop();
}
4.如何用鍵盤控制幀的跳轉
有的教師喜歡用鍵盤進行操作,如何使這類操作方使自如呢?用Flash MX製作的方法如下:
製作一個符號(如「知識回顧」),符號類型為「電影片段」。在這個符號中將需要回顧的
知識點逐幀展示,每幀動作腳本為:stop()回到主場景,在需要的幀插入該符號,該幀腳
本為:stop();插入後.單擊該符號.輸人腳本:
onClipEvent(Key Down) {//鍵盤響應,按下任一鍵時響應該命令
nextFrame();
}
這樣即實現了按任一鍵便可跳轉到指定幀的效果。此例僅僅是一種基本方法,讀者朋友在
應用時可以有更多的擴展。
5.滑鼠指向顯示填空題答案
顯示一些問題的答案,可以將這一答案製成—個按鈕,在這一按鈕的Up幀可以為空白關鍵
幀,其它幀為答案內容。在問題的答案處插入該按鈕,在該幀輸入腳本:
on(release) {
gotoAndStop;//第i幀將答案固定顯示在屏幕上
flash場景之間相互跳轉的實現方法
在製作flash動畫的時候,可能會有有很的mc
有時會把它放到幾個場景中,那麼在場景中的跳轉如何實現呢?
1.方法一:(使用telltarget命令)
按鈕上的as為:
on (release) {
tellTarget ("/") {
gotoAndPlay ("場景 1", 1);
}
}
2.方法二(用gotoandplay命令)
主場景2中的mc放到場景2的時間軸上
按鈕的as:
on release {
gotoAndPlay(」場景1」,1)
}
並且在最後一幀加stop()
問題就可以解決了:
3.方法三(利用路徑_root.gotoandplay())
第二個場景2裡面只有一個mc,在這個mc的最後一幀是stop和一個replay按
鈕
按鈕的as:_root.gotoAndPlay(1)
4.方法四(給場景起不同的名字)
如果你的as這樣寫:
第二個sence裡面只有一個mc,在這個mc的最後一幀是stop和一個repl
ay按鈕
按鈕的as:
on release {
gotoAndPlay(」sence1」,1)
}
結果按下後卻是從這個mc的第一幀開始播放,而不是從sence1的第一幀
這是因為主場景的名字默認為senceN
MC里也可以有多個場景,而mc也是默認為senceN
所以當你在MC用上gotoAndPlay ("scene1", 1);時,指的是所在場景中MC里的第一幀,而
不是主場景
解決的方法,就是給場景定義不同的名字
scene1我們改名為:主場景
scene2我們改名為:次場景1
正確的as應該為:
on (release) {
tellTarget (_root) {
gotoAndPlay (1);
}
}
如果想實現按鈕點擊後從次場景播放就可以在按鈕上寫上:
on (release) {
tellTarget (_root.次場景) {
gotoAndPlay (1);
}
}
5.方法五(利用標簽label)
我們在控制動畫的時候一般也不是從開始播放,可能是希望從某個場景的某一個關鍵幀開
始播放,那麼標簽是
最好的實現方法;
例如我們希望點擊上面的按鈕的時候讓動畫從主場景中的label1開始 播放,那麼按鈕上的
as應該為:
on (release) {
tellTarget (_root) {
gotoAndPlay ("label1");
}
例如有3個場景,我們希望點擊上面的按鈕的時候讓動畫從次場景1中的label4開始播放,
那麼按鈕上的as應該為:
on (release) {
tellTarget (_root) {
gotoAndPlay ("次場景 1", "label4");
}
}
}
}
如果想實現按鈕點擊後從次場景播放
就可以在按鈕上寫上:
on (release) {
tellTarget (_root.次場景) {
gotoAndPlay (1);
}
}
3,什麼叫矢量圖?
矢量圖可以任意縮放而不影響Flash的畫質,點陣圖圖像一般只作為靜態元素或背景圖,Fla
sh並不擅長處理點陣圖圖像的動作,應避免點陣圖圖像元素的動畫。
4,如何迅速地對齊不同Frame中的物件?
用 Inspector 「Ctrl+Alt+I」 直接輸入坐標。
或是工具欄〉〉窗口〉〉面板〉〉排列「Ctrl+K」 調出排列面板來。圖例
5,怎樣調節一個Symbol/MC地透明度?
選中Symbol/MC,菜單欄找到Modify(修改) 〉〉 Instance (實例)〉〉Color effect (效果
)〉〉 Alpha(透明度) 調整就可以了
6,做好地Flash放在html上面以後,它老是循環,怎麼能夠讓它不進行循環?
最後一個禎地Action設置成Stop(停止)
7,怎樣給我的FLASH做一個預載入地LOADING?
用Action語法地if frame is loaded來實現,新建一層,這層專門放Action,
第一幀,
ifFrameLoaded ("場景", frame) //假如場景中地禎數已經載入
goto and play() //跳至並播放某某禎(自己設定)
{}
第二幀,
goto and play("場景1", 1)//跳至並播放第一禎循環
再加上一個load地MC循環播放在這兩幀的中間,就OK了。
什麼?你要非常詳細地LOADING?那就當這個源碼吧,夠詳細了.
源碼下載
8,怎樣點擊一個按鈕打開一個頁面html而不是一個禎.
製作一個按鈕,上面地AS直接寫:
on (release)
getURL ("***.html");
{}
這里地***.html就是你要打開地頁面文件名,當然也可以是某某URL地址,比如說
9,我在按鈕地OVER禎放置了一個很大地MC,為什麼我要沒有點擊到按鈕滑鼠就變成了手地狀態?
按鈕真正激活區是在HIT(按下)禎地位置,如果想控制按鈕的位置為一定值,可以在HIT禎繪
制一個透明地圖形來判斷.
10,如果屏蔽滑鼠右鍵?FS命令都是什麼意思?
fscommand ("fullscreen", "true/false");(全屏設置,TRUE開,FALSE關)
fscommand ("showmenu", "true/false");(右鍵菜單設置,TRUE顯示,FALSE不顯示)
fscommand ("allowscale", "true/false");(縮放設置,TRUE自由縮放,FALSE調整畫面
不影響影片本身的尺寸)
fscommand ("trapallkeys", "true/false");(快捷鍵設置,TRUE快捷鍵開,FALSE快捷鍵
關)
fscommand ("exec");(EXE程序調用)
fscommand ("quit");(退出關閉窗口)
11,在FLASH中的字體總是很模糊,用變清晰地辦法嗎?
寫好文本以後CTRL+T打開文本設置面板,在最後地文本框選項那裡框選使用設計字體就行了
.(注意最好使用宋體,尺寸為12或者8,這樣比較工整)
12,我想做一個MTV,怎麼導入聲音呀?
很簡單,CTRL+R導入你地聲音文件就行了.
13,我製作地MTV聲音和歌詞總是不同步.
CTRL+F打開禎控制面板,右邊找到聲音選項卡,調整聲音地同步效果為STREM(音頻數據流)模
式就行了.
14,怎樣可以做出很漂亮地字體特效?
用第三方軟體Swish和Swfx這些,閃吧地軟體資源有下載.
3、微信公眾號里菜單跳轉的這種頁面是怎樣製作的??
這個問題已經見過很多次了,分兩種,一種是你申請原創之後就有後台版這樣的圖文模板,你直接添權加你的文章進去就行,還有一種就是你沒有申請原創沒有那個模板,做一個二次開發就可以了,也可以實現這樣的功能,公眾號開發技術可提供支持
4、網頁設計中的彈出菜單製作
打開"行為"面板,選"顯示彈出菜單"在內容里有個"+",新建一個,重復新建多個即可,其他選項是設置外觀和功能,自己看著辦.要選中觸發行為的文字或圖像再點行為面板.這樣就不是豎著排了吧
5、尋網頁設計中彈出菜單代碼??!!
把縱向的修改一些撒
一般<DIV id=Layer004
onmouseover="MM_showHideLayers('Layer004','','show')"
style="border:1px none #000000; Z-INDEX: 28; WIDTH: 106px; POSITION: absolute; HEIGHT: 61px; BACKGROUND-COLOR: #ffffff; layer-background-color: #FFFFFF; left:418px; top:144px; visibility:hidden"
onmouseout="MM_showHideLayers('Layer004','','hide')">彈出內容</div>
這裡面的left、top等是定位彈出菜單坐標的,在書寫彈出菜單內容,縱向的採用以下代碼
<TABLE height=50 borderColorDark=#ffffff width="100%"
borderColorLight=#336699 border=1>
<TBODY>
<TR>
<TD vAlign=center align=middle height=22>
<a href="ky/mathi.htm">數學地質研究所</a></TD></TR>
<TR>
<TD vAlign=center align=middle height=22>
<a href="ky/esi.htm">電子商務研究所 </a></TD></TR>
<TR>
<TD vAlign=center align=middle height=22>
<a href="ky/fi.htm">財務金融研究所</a></TD></TR>
<TR>
<TD vAlign=center align=middle height=22>
<a href="ky/si.htm">系統科學研究所 </a></TD></TR>
<TR>
<TD vAlign=center align=middle height=22>
<a href="ky/sd.htm">科技開發部 </a></TD></TR>
</TBODY></TABLE>
向下因為是<tr></tr>有多個,你可以把內容寫在一個<tr></tr>中,這裡面嵌套多個<td></td>,這樣就實現橫排顯示了
6、微信公眾號菜單跳轉的網頁怎麼製作?有模版嗎?
這個功能叫「頁面模板」,不需要原創就可以開通!
小螞蟻頁面模版說明
哪些公眾號可以申請版頁面模版功能?權
無需認證,無需開通支付,無需開通原創,支持所有類型微信公眾號
一個公眾號最多可創建幾個頁面?
100個。
小螞蟻Page頁面模板可發布到哪些地方?
公眾號可復制鏈接通過自定義菜單、圖文消息閱讀原文和其它方式發布。
7、html+div設計網頁,需要實現導航菜單路徑跟蹤,怎麼做,比如我從主頁進入到產品也在到詳細信息頁,需要有
首頁代碼index.html
//script代碼,參數分別是,本頁地址,本頁名稱,跳轉頁地址產品頁代碼proct.html
//script代碼其他頁面大致相同
8、Dreamweave中,跳轉菜單如何製作?請詳講!
1、 點擊主菜單中的插入/表單對象/跳轉菜單,也可以用插入/表單,中的跳轉菜單圖標,來調出跳轉菜單設置窗口。
2、 首先在「文本」一欄里輸入「請選擇相關網站」字樣。然後點擊窗口上的「+」號按鈕。這時菜單里多了一個選項,這個選項沒有鏈接,僅作為跳轉菜單的說明文字。
3、 在文一欄里輸入需要的網站,如「新浪」,然後在「選擇時,前往URL」一欄里輸入網站鏈接地址http://www.sina.com.cn,此時,菜單項一欄里又多了一個選項,這個選項對應一個網的鏈接地址。
4、 使用同樣方法,在菜單中添加其他一些選項及對應的鏈接。還可以用「上」「下」的按鈕,來調整它們的順序。
5、 設置窗口的「菜單之後插入前往按鈕」一項先不要選擇。選中「更改URL後選擇第一個項目」一項,這樣當使用跳轉菜單到某個頁面後,如果返回到跳轉菜單頁面,此時頁面中的跳轉菜單默認顯示的依舊是第1項內容。
6、 設置完畢後點擊「確定」即可。
****因為跳轉菜單是一個表單,所以其實是先插入了表單(紅色虛線區域),然後在表單中再插入了下拉菜單。
7、 想修改選項,可以選中頁面上的下攔菜單,此時點擊屬性面板中的「列表值」,即可修改各項內容了。
8、 當選中跳轉菜單時,行為窗口中也出現行為。雙擊該行為,也可以進入設置窗口,可以重新對其進行設置。
9、 如果「菜單項」里的第一項就是鏈接,而不是上面所說的一句提示的話,那麼就要選中「選項「中的「菜單之後插入前往按鈕」。添加一個「前往」按鈕。
9、靜態網頁中彈出式菜單如何設計?
<! html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>二級dropdown彈出菜單--A CROSS BROWSER DROP DOWN CASCADING VALIDATING MENU</title>
<style type="text/css">
/* common styling */
/* set up the overall width of the menu div, the font and the margins */
.menu {
font-family: arial, sans-serif;
width:750px;
margin:0;
margin:50px 0;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
padding:0;
margin:0;
list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
float:left;
position:relative;
}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu ul li a, .menu ul li a:visited {
display:block;
text-align:center;
text-decoration:none;
width:104px;
height:30px;
color:#000;
border:1px solid #fff;
border-width:1px 1px 0 0;
background:#c9c9a7;
line-height:30px;
font-size:11px;
}
/* make the dropdown ul invisible */
.menu ul li ul {
display: none;
}
/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
color:#fff;
background:#b3ab79;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
display:block;
position:absolute;
top:31px;
left:0;
width:105px;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
display:block;
background:#faeec7;
color:#000;
}
/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover {
background:#dfc184;
color:#000;
}
</style>
<!--[if lte IE 6]>
<style type="text/css">
/* styling specific to Internet Explorer IE5.5 and IE6. Yet to see if IE7 handles li:hover */
/* Get rid of any default table style */
table {
border-collapse:collapse;
margin:0;
padding:0;
}
/* ignore the link used by 'other browsers' */
.menu ul li a.hide, .menu ul li a:visited.hide {
display:none;
}
/* set the background and foreground color of the main menu link on hover */
.menu ul li a:hover {
color:#fff;
background:#b3ab79;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li a:hover ul {
display:block;
position:absolute;
top:32px;
left:0;
width:105px;
}
/* style the background and foreground color of the submenu links */
.menu ul li a:hover ul li a {
background:#faeec7;
color:#000;
}
/* style the background and forground colors of the links on hover */
.menu ul li a:hover ul li a:hover {
background:#dfc184;
color:#000;
}
</style>
<![endif]-->
</head>
<body>
<div class="menu">
<ul>
<li><a class="hide" href="../menu/index.html">DEMOS</a>
<!--[if lte IE 6]>
<a href="../menu/index.html">DEMOS
<table><tr><td>
<![endif]-->
<ul>
<li><a href="../menu/zero_dollars.html" title="The zero dollar ads page">zero dollars</a></li>
<li><a href="../menu/embed.html" title="Wrapping text around images">wrapping text</a></li>
<li><a href="../menu/form.html" title="Styling forms">styled form</a></li>
<li><a href="../menu/nodots.html" title="Removing active/focus borders">active focus</a></li>
<li><a href="../menu/shadow_boxing.html" title="Multi-position drop shadow">shadow boxing</a></li>
<li><a href="../menu/old_master.html" title="Image Map for detailed information">image map</a></li>
<li><a href="../menu/bodies.html" title="fun with background images">fun backgrounds</a></li>
<li><a href="../menu/fade_scroll.html" title="fade-out scrolling">fade scrolling</a></li>
<li><a href="../menu/em_images.html" title="em size images compared">em sized images</a></li>
</ul>
<!--[if lte IE 6]>
</td></tr></table>
</a>
<![endif]-->
</li>
<li><a class="hide" href="index.html">MENUS</a>
<!--[if lte IE 6]>
<a href="index.html">MENUS
<table><tr><td>
<![endif]-->
<ul>
<li><a href="spies.html" title="a coded list of spies">spies menu</a></li>
<li><a href="vertical.html" title="a horizontal vertical menu">vertical menu</a></li>
<li><a href="expand.html" title="an enlarging unordered list">enlarging list</a></li>
<li><a href="enlarge.html" title="an unordered list with link images">link images</a></li>
<li><a href="cross.html" title="non-rectangular links">non-rectangular</a></li>
<li><a href="jigsaw.html" title="jigsaw links">jigsaw links</a></li>
<li><a href="circles.html" title="circular links">circular links</a></li>
</ul>
<!--[if lte IE 6]>
</td></tr></table>
</a>
<![endif]-->
</li>
<li><a class="hide" href="../layouts/index.html">LAYOUTS</a>
<!--[if lte IE 6]>
<a href="../layouts/index.html">LAYOUTS
<table><tr><td>
<![endif]-->
<ul>
<li><a href="../layouts/bodyfix.html" title="Cross browser fixed layout">Fixed 1</a></li>
<li><a href="../layouts/body2.html" title="Cross browser fixed layout">Fixed 2</a></li>
<li><a href="../layouts/body4.html" title="Cross browser fixed layout">Fixed 3</a></li>
<li><a href="../layouts/body5.html" title="Cross browser fixed layout">Fixed 4</a></li>
<li><a href="../layouts/minimum.html" title="A simple minimum width layout">minimum width</a></li>
</ul>
<!--[if lte IE 6]>
</td></tr></table>
</a>
<![endif]-->
</li>
<li><a class="hide" href="../boxes/index.html">BOXES</a>
<!--[if lte IE 6]>
<a href="../boxes/index.html">BOXES
<table><tr><td>
<![endif]-->
<ul>
<li><a href="spies.html" title="a coded list of spies">spies menu</a></li>
<li><a href="vertical.html" title="a horizontal vertical menu">vertical menu</a></li>
<li><a href="expand.html" title="an enlarging unordered list">enlarging list</a></li>
<li><a href="enlarge.html" title="an unordered list with link images">link images</a></li>
<li><a href="cross.html" title="non-rectangular links">non-rectangular</a></li>
<li><a href="jigsaw.html" title="jigsaw links">jigsaw links</a></li>
<li><a href="circles.html" title="circular links">circular links</a></li>
</ul>
<!--[if lte IE 6]>
</td></tr></table>
</a>
<![endif]-->
</li>
<li><a class="hide" href="../mozilla/index.html">MOZILLA</a>
<!--[if lte IE 6]>
<a href="../mozilla/index.html">MOZILLA
<table><tr><td>
<![endif]-->
<ul>
<li><a href="../mozilla/dropdown.html" title="A drop down menu">drop down menu</a></li>
<li><a href="../mozilla/cascade.html" title="A cascading menu">cascading menu</a></li>
<li><a href="../mozilla/content.html" title="Using content:">content:</a></li>
<li><a href="../mozilla/moxbox.html" title=":hover applied to a div">mozzie box</a></li>
<li><a href="../mozilla/rainbow.html" title="I can build a rainbow">rainbow box</a></li>
<li><a href="../mozilla/snooker.html" title="Snooker cue">snooker cue</a></li>
<li><a href="../mozilla/target.html" title="Target Practise">target practise</a></li>
<li><a href="../mozilla/splittext.html" title="Two tone headings">two tone headings</a></li>
<li><a href="../mozilla/shadow_text.html" title="Shadow text">shadow text</a></li>
</ul>
<!--[if lte IE 6]>
</td></tr></table>
</a>
<![endif]-->
</li>
<li><a class="hide" href="../ie/index.html">EXPLORER</a>
<!--[if lte IE 6]>
<a href="../ie/index.html">EXPLORER
<table><tr><td>
<![endif]-->
<ul>
<li><a href="../ie/exampleone.html" title="Example one">example one</a></li>
<li><a href="../ie/weft.html" title="Weft fonts">weft fonts</a></li>
<li><a href="../ie/exampletwo.html" title="Vertical align">vertical align</a></li>
</ul>
<!--[if lte IE 6]>
</td></tr></table>
</a>
<![endif]-->
</li>
<li><a class="hide" href="../opacity/index.html">OPACITY</a>
<!--[if lte IE 6]>
<a href="../opacity/index.html">OPACITY
<table><tr><td>
<![endif]-->
<ul>
<li><a href="../opacity/colours.html" title="colour wheel">opaque colours</a></li>
<li><a href="../opacity/picturemenu.html" title="a menu using opacity">opaque menu</a></li>
<li><a href="../opacity/png.html" title="partial opacity">partial opacity</a></li>
<li><a href="../opacity/png2.html" title="partial opacity II">partial opacity II</a></li>
</ul>
<!--[if lte IE 6]>
</td></tr></table>
</a>
<![endif]-->
</li>
</ul>
<!-- clear the floats if required -->
<div class="clear"> </div>
</div>
</body>
</html>
10、DW網頁設計·跳轉菜單居中
去掉代碼中的:
"<form name="form1" class="font2" id="form1">
和
</form>
就可以了