一.  http-equiv="Page-Enter"  

解决方案 »

  1.   

    http-equiv="Page-Enter"不对啊,我是想实现页面从右往左滑动退出
      

  2.   

    <meta http-equiv="Page-Enter" contect="revealTrans(duration=10,transtion= 50)">
    和<meta http-equiv="Page-Exit" contect="revealTrans(duration=20,transtion=6)">
    设定进入和离开页面时的特殊效果。
    要求是同过_self链接打开~但是可以在打开页面中,进行一次重定向---
    <meta http-equiv="Page-Enter" content="progid:DXImageTransform.Microsoft.Slide
    (Duration=2.500,slidestyle='hide')">
    <a href="" onclick="woyingjie()">open</a>
    <script>
    function woyingjie(){
    var a=window.open(document.location,'','fullscreen=1');
    a.location.href=document.location;
    window.opener=null;
    window.close();
    return false;
    }
    </script>
      

  3.   

    对上面的代码,我没做实质性的修改,试了试,不行,整个页面一片空白,我再看看
    对于第二个问题,http://yizy8888.go.nease.net/WYBJ.htm 提到了中MS FrontPage 2000中的一个冲蚀功能,我装有FrontPage 2003,想试试然后看代码是什么,却在2003种没找到此功能
      

  4.   

    对第三个问题,是不是只能是background:white?改成其他颜色也白搭?
      

  5.   

    <script language="JavaScript" type="text/JavaScript"><!--
      if(document.all)
          document.body.style.cssText="background:# url('') no-repeat fixed center center"
    -->
    </script>这段代码放在<head></head>之间和<body></body>之间不一样