http://www.jintianlun.com/images/Movie1.swf

解决方案 »

  1.   

    谢谢!
    那我能用java的脚本实现吗?
    谢谢!
    哪儿可以得到源代码,谢谢
      

  2.   

    可以,不用脚本,把要移动的文字做成图片,然后用HTML里的<marquee>移动这张图片就行啦.
      

  3.   

    document.write('<div id="str" style="position:absolute">Hello Javascript</div>');str1 = document.all["str"].style;function _move()
    {
      if(str1.t > 360)
        str1.t = 0;
      else
        str1.t++;
      str1.pixelLeft = Math.cos(str1.t/20)*400 + 400;
      str1.pixelTop = Math.sin(str1.t/15)*200 + 200;
      setTimeout("_move()",20);
    }function move()
    {
      str1.t = 0;
      setTimeout("_move()",20);
    }move();基本上就这么回事吧,网上有许多别人封装得很好的代码,尽管用好了(JS 无法加密)—其实用上面的兄弟的方法别提多方便了。