SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>

<head>
	<!-- <meta charset="utf-8" /> -->
	<title></title>
</head>

<body>
    <!-- 画图内容 -->
	<svg width="500" height="500" viewbox="0 0 100 100">
		<!-- <rect width="300" height="500" rx="10" ry="10" x="0" y="230" />
		<rect width="200" height="200" fill="red" stroke="green" stroke-width="10" x="350" y="30" rx="100" ry="100" stroke-dasharray="10 20 30 40">
			<set attributeName="fill" to="green" begin="mouseout" />
	
            <set attributeName="fill" to="red" begin="blur" />
		</rect>
		<circle cx="150" cy="350" r="100" fill="yellow" stroke="blue" stroke-width="10" stroke-dasharray="10 20 30 40" />
		<ellipse cx="150" cy="580" rx="100" ry="60" fill="blue" stroke="black" stroke-width="10" stroke-dasharray="10 20 30 40" />
		<polygon x="300" y="650" points="200,45 250,200 120,100 280,100 150,200" fill="green" stroke-width="5" stroke="#b80cf1" stroke="red"
		 fill="none">
		</polygon> -->
        <!-- <path d="M50,80 L90,150 150,80" stroke="black" fill="none"/> -->
        <!-- <path d= "M50,50 350,50 350,350 50,350 50,47.5" stroke="blue" fill="none"
        stroke-width="5" > -->
        <!-- 网格开始 -->
        <path d="M0,0 L100,0 100,100 0,100 0,0"  stroke="blue" fill="none" stroke-width="1"/> -->
        <path d="M0,10 L100,10 M0,20 L100,20 M0,30 L100,30 M0,40 L100,40 M0,50 L100,50 M0,60 L100,60 M0,70 L100,70 M0,80 L100,80 M0,90 L100,90" stroke="blue" fill="none" stroke-width="0.1"/>
       <path d="M10,0 L10,100 M20,0 L20,100 M30,0 L30,100 M40,0 L40,100 M50,0 L50,100 M60,0 L60,100 M70,0 L70,100 M80,0 L80,100 M90,0 L90,100" stroke="blue" fill="none" stroke-width="0.1"/>
        <!-- 网格结束 -->
        <!-- <path d="M20,20 H50 V10 L70,30 50,50 V40 H20 V20"stroke="black" fill="none"/> -->
        <!-- <path d="M10,70 h30 v-10 l20,20 -20,20 v-10 h-30 z" stroke="black" fill="none" /> -->
        <path d="M20,50 Q35,10 50,50 T80,50 z"  stroke="black" fill="none"/>
    </svg>
<!-- 画图内容结束 -->


<!-- 分组整体内容 -->
<!-- <svg width="500" height="500" viewbox="0 0 100 100">
<defs>
    <g id="aaa">
        <circle cx="15" cy="15" r="15" fill="black" stroke="black"/>
    </g>
    <g id="bbb">
     <rect x="1" y="1" width="20" height="20">
    </g>   
</defs>
<use xlink:href="#aaa" x="20" y="20"/>
<use xlink:href="#bbb" x="50" y="80"/>
</svg> -->
<!-- 分组整体内容结束 -->

</body>  



</html>