1.id 規(guī)則
2.class 規(guī)則
3.標簽規(guī)則
4.通用規(guī)則
對效率地普遍認識是從steve souders在2009年出版地《高性能網站建設進階指南》開始,雖然該書中羅列地更加詳細,但你也可以在這里查看完整地引用列表,也可以在谷歌地《高效css選擇今天在寫一個flash廣告代碼的時候,因為flash自帶的鏈接,容易被當成彈出廣告,所以做了一個div層放到flash上面,這樣鏈接都是a觸發(fā)的不會被攔截,但發(fā)現flash一直處于div層上面,原來flash需要加個參數才可以。
讓flash置于div層之下的方法,讓flash不擋住飄浮層或下拉菜單,讓flash不檔住浮動對象或層的關鍵參數:wmode=opaque。
方法如下:
針對ie 在<object></object>內加上參數<param name=wmode value=opaque />
針對ff 在<embed />內加上參數wmode=opaque
腳本之家使用代碼:
xml/html code復制內容到剪貼板
<!doctype html public -//w3c//dtd xhtml 1.0 transitional//en >
<html xmlns=>
<head>
<meta http-equiv=content-type content=text/html; charset=gb2312 />
<title>22cn</title>
<style type=text/css>
<!--
body {
position:relative;
z-index:0;
margin:0; padding:0
}
body,td,th {
color: #333333;
}
*{margin:0; padding:0}
img{ border:0}
#jb51{ position:relative; width:300px; height:250px}
#div1 {
position:absolute;
left:0;
top:0;
width:300px;
height:250px; z-index:-1
}
#div2 {
position:absolute;
left:0;
top:0;
width:300px;
height:250px;
z-index:99999;
}
-->
</style></head>
<body>
<div id=jb51>
<div id=div1>
<script type=text/javascript>
document.write('<object classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000 codebase= width=300 height=250>');
document.write('<param name=movie value= />');
document.write('<param name=quality value=high /><param name=wmode value=opaque />');
document.write('<embed src= quality=high pluginspage= type=application/x-shockwave-flash width=300 height=250 wmode=opaque></embed>');
document.write('</object>');
</script>
</div>
<div id=div2>
<a href= target=_blank><img src= width=300 height=250/></a>
</div>
</div>
</body>
</html>
標準的的flash插入
xml/html code復制內容到剪貼板
<!-- 標準的的flash插入
設置高度與寬度:
width=400 height=400
設置路徑:
data=style/flash/001.swf 與 value=style/flash/001.swf
替代文本或替代圖片:
<a href= title=><img src= alt= /></a> 也可以不要這段
-->
<object type=application/x-shockwave-flash data=style/flash/001.swf width=400 height=400>
<param name=movie value=style/flash/001.swf />
<a href=style/flash/001.swf><img src=style/img/001.jpg alt=flash動畫 /></a>
</object>
不會遮住層的flash
xml/html code復制內容到剪貼板
<!-- 不會遮住層的flash
讓flash不檔住浮動對象或層的關鍵屬性:
<param name=wmode value=opaque />
<embed wmode=opaque></embed>
-->
<object type=application/x-shockwave-flash data=style/flash/001.swf width=400 height=400>
<param name=movie value=style/flash/001.swf />
<param name=wmode value=opaque />
<embed wmode=opaque></embed>
<a href=style/flash/001.swf><img src=style/img/001.jpg alt=flash動畫 /></a>
</object>
透明的flash
xml/html code復制內容到剪貼板
<!-- 透明的flash
讓flash透明的關鍵屬性:
<param name=wmode value=transparent>
-->
<object type=application/x-shockwave-flash data=style/flash/001.swf width=400 height=400>
<param name=movie value=style/flash/001.swf />
<param name=wmode value=transparent>
<a href=style/flash/001.swf><img src=style/img/001.jpg alt=flash動畫 /></a>
</object>
wmode 屬性/參數值 window | opaque | transparent
模板變量:$wm,(可選)允許使用 internet explorer 4.0 中的透明 flash 內容、絕對定位和分層顯示功能。此標記/屬性僅在帶有 flash player activex 控件的 windows 中有效。
window在 web 頁上用影片自己的矩形窗口來播放應用程序。window表明此 flash 應用程序與 html 層沒有任何交互,并且始終位于最頂層。
opaque 使應用程序隱藏頁面上位于它后面的所有內容。
transparent使 html 頁的背景可以透過應用程序的所有透明部分顯示出來,并且可能會降低動畫性能。
opaque windowless和transparent windowless都可與 html 層交互,從而允許 swf 文件上方的層遮蔽應用程序。這兩種選項之間的差異在于transparent允許透明,因此,如果 swf 文件的某一部分是透明的,則 swf 文件下方的 html 層可以透過該部分顯示出來,而opaque則不會顯示。
如果忽略此屬性,默認值為 window。僅適用于 object。器地最佳實踐》中查看
更多信息請查看IT技術專欄