所以我的项目是使用路径和线条创建一个形状,但问题是我想在里面而不是外面填充颜色
所以我有这个代码
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill:none;stroke-width:4;">
/*head*/
<path d="M800,10
Q650,100 500,10
M300,260
Q650,200 500,10
M340,310
C300,410
225,280 300,260
M550,550
C600,400
400,200 340,310
M650,710
Q630,600 550,550
M1000,260
Q650,200 800,10
M960,310
C1000,410
1075,280 1000,260
M750,550
C700,400
900,200 960,310
M650,710
Q670,600 750,550" style="stroke: #73b4d5; fill: Black;"/>
/*left-bone*/
/*longest-bone*/
<line x1="600" y1="170" x2="630" y2="590"
style="stroke: #006600;"/>
/*shortest-bone*/
<path d="M570,540
Q565,545 630,590" style="stroke: #28c628; fill: none;"/>
/*top-bone*/
<path d="M470,260
Q530,275 600,170" style="stroke: #76c628; fill: none;"/>
/*side-bone*/
<path d="M570,540
Q600,375 470,260" style="stroke: #28c66e; fill: none;"/>
/*right-bone*/
/*longest-bone*/
<line x1="700" y1="170" x2="670" y2="590"
style="stroke: #006600;"/>
/*shortest-bone*/
<path d="M730,540
Q735,545 670,590" style="stroke: #28c628; fill: none;"/>
/*top-bone*/
<path d="M830,260
Q770,275 700,170" style="stroke: #76c628; fill: none;"/>
/*side-bone*/
<path d="M730,540
Q700,375 830,260" style="stroke: #28c66e; fill: none;"/>
/*eyes*/
<ellipse cx="650" cy="100" rx="70" ry="30" style="stroke:#73b4d5;fill:none;"/>
</g>
</svg>
但是当我运行它时,填充在形状之外,我想要的是在里面而不是在外面填充形状。
请帮我!很多!