SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
<head>
<title>svg</title>
</head>
<body>
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="120" height="100">
        <defs>
            <marker id='markerArrow' markerWidth='13' markerHeight='13' refx='10' refy='6' orient='auto'>
                <path d='M2,2 L2,11 L10,6 L2,2' style='fill:black' />
            </marker>
        </defs>
    <!--rect-->
        <g fill="white" stroke="black" fill-opacity="0.0">
            <rect  x="10" y="10" width="100" height="80" stroke="#FF9966"></rect>   
        </g>
                    
        <g fill="black">
            <text x="20" y="25" fill="#003399" font-size="10" font-family="黑体">图例:</text>
            <circle cx="95" cy="35" r="5" fill="#66CC99" stroke="black" stroke-width="1"  />
            <circle cx="95" cy="55" r="5" fill="#87CEEB" stroke="black" stroke-width="1"  />
            <circle cx="95" cy="75" r="5" fill="#FFCCFF" stroke="black" stroke-width="1"  />
          
            <text x="30" y="40" fill="#003399" font-size="10" font-family="黑体">在运行模块:</text>
            <text x="30" y="60" fill="#003399" font-size="10" font-family="黑体">运行过模块:</text>
            <text x="30" y="80" fill="#003399" font-size="10" font-family="黑体">未运行模块:</text>
        </g>
    </svg>
</body>

</html>