http://www.chinatax.gov.cn/cjsfwwangluo/
进去之后谁知道这是什么技术实现的啊

解决方案 »

  1.   

    用JS可以实现比如:<body bgcolor="00FF99" leftmargin="0" topmargin="0"><table border=1 cellpadding=0 cellspacing=0 width="100%" height="100%">
    <tr>
       <form name=loading>
       <td align=center>
          <p><font color=blue>请稍候.......</font></p>
       <p>
          <input type=text name=chart size=46 style="font-family:Arial; font-weight:bolder; color:red ; background-color:CCFF66; padding:0px; border-style:none;">
          <br>
          <input type=text name=percent size=46 style="font-family:Arial;  color:red; background-color:00FF99; text-align:center; border-width:medium; border-style:none;">
          <br>
      <input type="button" onclick="count()" value="快单击我">
      <input type="button" onclick="back()" value="返回">
       <script>
          var bar=0
          var line="||"
          var amount ="||"
      
          
          function count()
          {
              bar= bar+2
              amount =amount + line
              document.loading.chart.value=amount
              document.loading.percent.value=bar+"%"
              
      if (bar<99)
              {
          setTimeout("count()",100);
      }
              else
              {
          window.location="http://www.baidu.com/";
      //window.open("http://www.baidu.com/","_self") ;
      }
          }   function back()
      {
          window.location="88.html" ;
      }
       </script>
       
       </p>
       </td>
       </form>
    </tr>
    </table></body>
      

  2.   

    这是flash,不过做这种animation js也可以,如果要现成的,jquery中就有类似的
      

  3.   

    flex和jquery插件都可以实现,但是flex的要更好看些