『壹』 框架網頁如何把框架設置為隱藏
frameborder=0
設定框架的邊框,其值只有
0
和
1
,
0
就是不要邊框,
1
就是要顯示邊框。邊框是無法調內整粗細容的。
framespacing=5
表示框架與框架間的保留空白的距離,以免看起來太擠。
scrolling="no"
設定是否要顯示卷軸,YES是要顯示卷軸,NO是無論如何都不要顯示,AUTO是視情況顯示。
marginhight=2
表示框架高度部份邊緣所保留的空間。
marginwidth=2
表示框架寬度部份邊緣所保留的空間。
『貳』 請教,怎麼隱藏InDesign 這些框架
你好,因為問題描述里沒有指明是哪種框架,
你可以直接執行「視圖」菜單,選擇,顯示/隱藏 的框架類型
如果是 文字框的框邊線的話,可以直接執行「ctrl+H"
『叄』 dreamweaver如何隱藏框架線
你確定在表單中插入表格?表單和表格定義不一樣的,如果是在dreamweaver中弄的話你可以在設計視圖那裡做,先做出個模版然後再修改屬性就可以了。
『肆』 網頁製作框架怎麼隱藏
不好意思,SharePoint 的框架是什麼東西?
如果是frame,應該設置frame的frameborder和子頁body的border為0
『伍』 我把團隊框架隱藏了 怎麼弄出來啊急
不知道你用的什麼插件,如果是大腳的話:
在小地圖左邊有個爪子圖標,爪子下面有專個按鈕圖屬標點下,裡面有個GRID,點開就行了,或者輸入/Grid config回車也一樣 。
如果是精靈的話,也同樣那個位置有圖標點,但是命令我就不知道是不是一樣了。
不行的話退出遊戲,再進試試,還不行的話,卸載插件重新下個裝上肯定沒問題了。
『陸』 WOW怎麼隱藏團隊框架人員的詳細說明
點開魔盒插件,找到最後一頁,那個叫滑鼠的一個,從裡面選擇查看詳細資料的方式。 你試試吧
『柒』 如何隱藏顯示iframe
下面是隱藏顯示的代碼:
index.htm
<html>
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>frame框架的顯示隱藏操作 - 51windows.net</title>
</head>
<frameset name="full" rows="64,*,64">
<frame name="top" scrolling="no" xnoresize target="contents" src="top.htm">
<frameset cols="25%,*" name="cen">
<frame name="contents" target="main" src="left.htm">
<frame name="main" src="main.htm">
</frameset>
<frame name="bottom" scrolling="no" xnoresize target="contents" src="bottom.htm">
<noframes>
<body>
<p>此網頁使用了框架,但您的瀏覽器不支持框架。</p>
</body>
</noframes>
</frameset>
</html>
main.htm
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>main - 51windows.net</title>
</head>
<body>
<SCRIPT LANGUAGE="javascript">
<!--
function shtop(){
if (parent.full.rows.indexOf("0,*,")!=-1){
parent.full.rows="64,*,"+parent.full.rows.split(",")[2]
document.getElementById("shtop").value="隱藏上部";
}
else{
parent.full.rows="0,*,"+parent.full.rows.split(",")[2]
document.getElementById("shtop").value="顯示上部";
}
}
function shleft(){
if (parent.cen.cols=="0,*"){
parent.cen.cols="25%,*,"
document.getElementById("shleft").value="隱藏左部";
}
else{
parent.cen.cols="0,*"
document.getElementById("shleft").value="顯示左部";
}
}
function shbottom(){
if (parent.full.rows.indexOf(",*,0")!=-1){
parent.full.rows=parent.full.rows.split(",")[0]+",*,64"
document.getElementById("shbottom").value="隱藏下部";
}
else{
parent.full.rows=parent.full.rows.split(",")[0]+",*,0"
document.getElementById("shbottom").value="顯示下部";
}
}
function maxmain(){
if (parent.full.rows=="0,*,0"){
parent.full.rows="64,*,64"
parent.cen.cols="25%,*"
document.getElementById("maxmain").value="隱藏左上下";
document.getElementById("shtop").value="隱藏上部";
document.getElementById("shleft").value="隱藏左部";
document.getElementById("shbottom").value="隱藏下部";
}
else{
parent.full.rows="0,*,0";
parent.cen.cols="0,*";
document.getElementById("maxmain").value="顯示左上下";
document.getElementById("shtop").value="顯示上部";
document.getElementById("shleft").value="顯示左部";
document.getElementById("shbottom").value="顯示下部";
}
}
//-->
</SCRIPT>
<input type="button" name="maxmain" id="maxmain" onclick="maxmain();" value="隱藏左上下">
<input type="button" name="shtop" id="shtop" onclick="shtop();" value="隱藏上部">
<input type="button" name="shleft" id="shleft" onclick="shleft();" value="隱藏左部">
<input type="button" name="shbottom" id="shbottom" onclick="shbottom();" value="隱藏下部">
</body>
</html>
框架的嵌套:
<html>
<head>
</head>
<body>
<iframe width=468 height=60 src=abc.aspx></iframe>
<iframe width=468 height=60 src=cde.aspx></iframe>
</body>
</html>
#################################################
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>無標題文檔</title>
</head>
<frameset rows="77,181" cols="*" framespacing="0" border="0">
<frame src="abc.aspx">
<frame src="cde.aspx">
</frameset>
<noframes><body>
</body></noframes>
</html>
//*****************說明************************:
frameset是框架,一個網頁被劃分成幾個塊, 每個塊為不同的網頁文件。iframe是內嵌網頁,可以被嵌在一個頁頁的任何地方。一般iframe使用靈活些。
當使用框架時頁面中不應該有body標簽。
frameset標簽是成對出現的,以<frameset>開始,</frameset>結束,裡面用frame。
frameset裡面還能嵌入frameset。嵌套框架,框架可以進行多層嵌套。
frameset裡面的id,為了方便後面用Javascript來訪問這個對象.
如下:
<frameset rows="58,*" frameborder="NO" border="0" framespacing="0">
<frame src="top.htm" name="topFrame" scrolling="NO" noresize ><!--頁頭-->
<frameset rows="*,20" cols="*" framespacing="0" frameborder="NO" border="0">
<frameset rows="*" cols="120,15,*" framespacing="0" frameborder="NO" border="0" id="leftFrameSet">
<frame src="menu.htm" name="leftFrame" scrolling="NO" noresize><!--菜單-->
<frame src="mid.htm" name="midFrame" scrolling="NO" noresize><!--菜單收縮條-->
<frameset rows="35,*" framespacing="0" frameborder="NO" border="0">
<frame src="navi.htm" name="righttop" scrolling="NO" noresize><!--導航-->
<frameset cols="*,200" framespacing="0" frameborder="NO" border="0">
<frame src="" name="mainFrame">
<frame src="" name="rightFrame" scrolling="NO">
</frameset>
</frameset>
</frameset>
<frame src="bottom.htm" name="bottomFrame" scrolling="NO" noresize><!--頁尾-->
</frameset>
</frameset>
『捌』 css怎麼放上去顯示第二個框架隱藏第一個框架
你的意思是:滑鼠移到第二個div上,顯示第二個框架,而隱藏第一個框架
純CSS可以用 :hover{ } 來實現。
『玖』 如何控制框架之間的菜單顯示和隱藏
點擊窗口--工作區布局--設計器,就可以顯示出來了。
Adobe Dreamweaver,簡稱逗DW地,中文名稱 "夢想編專織者",是美國屬MACROMEDIA公司(2005年被Adobe公司收購)開發的集網頁製作和管理網站於一身的所見即所得網頁編輯器,DW是第一套針對專業網頁設計師特別發展的視覺化網頁開發工具,利用它可以輕而易舉地製作出跨越平台限制和跨越瀏覽器限制的充滿動感的網頁。