首页 > 代码库 > Meta

Meta

  

1、自动刷新,并指向新网页

<meta http-equiv="Refresh" content="10; url= http://yourlink"> 
10秒后刷新到http://yourlink;

2、网页间转换时加入效果
 
<meta http-equiv="Page-Enter" content="revealTrans(duration=10, transition=50)"> 
<meta http-equiv="Page-Exit" content="revealTrans(duration=20, transition=6)"> 
加在一个网页中,进出时有一些特殊效果,这个功能即FrontPage 98的Format/Page Transition.不过注意所加网页不能是一个Frame页;

3、强制网页不被存入Cache中
 
<meta http-equiv="pragma" content="no-cache"> 
<meta http-equiv="expires" content="wed, 26 Feb 1997 08:21:57 GMT"> 
大家可以到http://www.internet.com上看看,它的首页当你断线后,就无法在cache中再调出。(本身是关于建站很棒的站点)

4、定义指向窗口

<meta http-equiv="window-target" content="top"> 
可以防止网页被别人作为一个Frame调用.

Meta