网页设计中常用到的一些技巧

设置wmode参数让flash透明

< param  name ="wmode"  value ="transparent" >

设置menu参数屏蔽flash右键菜单(设置和关于是屏蔽不掉的)

< param  name ="menu"  value ="false" >

地址栏前的图标设置

< link  rel ="Shortcut Icon"  href ="favicon.ico" >

收藏夹中的图标设置

< link  rel ="Bookmark"  href ="favicon.ico" >

页面定时跳转

< META  http-equiv ="REFRESH"  content ="5;URL=http://blog.csdn.net/lixianlin/" >  

禁止复制

< 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()" >

关闭窗口

< href ="#"  onClick ="window.close()" > 关闭窗口 </ a >

E-mail链接设置

< href =mailto:E-mail地址1,E-mail地址2?cc=抄送地址&cc=密送地址&subject=预设的主题&body=正文内容 > 显示的链接文字 </ a >

自定义光标

< style  type ="text/css" > body {cursor: url('mouse.ani')}</style>

<style type="text/css">{cursor: url('mouse1.cur')}</style>

 

你可能感兴趣的:(Flash,url,menu)