用vml可以实现一些几何形状   不过只是在IE里面可以用
实现自己画的功能应该是可以的
大概可以这样 js操作css 再用SetInterval来不断的显示  这样就有点像在画了 呵呵

解决方案 »

  1.   

    楼主去找FlashVml(闪耀之星)3.0、这个软件,不过只能在ie下面使用,使用的是vml技术,最近在看vml,感觉还不错
      

  2.   

    我瞎搞了个,不过效果很垃圾,呵呵~~仅运行于ie下 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html xmlns:v>
      <head>
        <meta http-equiv="content-type" content="text/html;charset=gb2312"/>
        <title>网页绘图,仅ie下能运行,采用vml绘制图形</title>
        <style>v\:*{Behavior:url(#default#VML);}</style>
      </head>
      <body>
    <div style="position:absolute;left:20px;top:20px;">按住鼠标绘制,释放鼠标结束</div>
     <script type="text/javascript">
     var mouseDown=false,oex,oey,vml,x,y;
     document.onmousedown=function(){mouseDown=true;oex=event.clientX;oey=event.clientY;}
     document.onmouseup=function(){mouseDown=false;}
     document.onmousemove=function(){
       if(mouseDown){
         x=event.clientX;
         y=event.clientY;
         vml="<v:line from='"+oex+","+oey+"' to='"+x+","+y+"'/>";
         oex=x;
         oey=y;
         document.body.insertBefore(document.createElement(vml));
       }
     }
    document.onselectstart=function(){return false;}//取消选择
     </script>
      </body>
    </html>
      

  3.   

    是马上显示啊,最多时间差也不会超过2秒兄弟是不是cpu不够用啊??