我制作了一个简单的SVG图像,但背景不适用,而应该是。
到目前为止,我得到了以下代码:
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" id="content" width="100%" height="100%" viewbox="0 0 800 1000" preserveaspectratio="xMidYMid meet" version="1.1">
<defs>
<lineargradient id="gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0"/>
<stop offset="100%" stop-color="orange" stop-opacity="0.8"/>
</lineargradient>
<lineargradient id="gradientLine" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="orange" stop-opacity="0"/>
<stop offset="100%" stop-color="orange" stop-opacity="0.6"/>
</lineargradient>
</defs>
<g id="vis" transform="translate(330,670)">
<path fill="url(#gradient)" d="M-112.87131548350527,-640.1250394579351A650,650 0 0,1 222.31309316168483,-610.8002035108404L0,0Z"/>
<circle r="35" stroke="orange" fill="orange" opacity="1"/>
<circle r="3" stroke="black" fill="black" opacity="1"/>
<line x1="0" x2="-85" y1="0" y2="0" fill="black" stroke="black"/>
</g>
</svg>
path
是黑色的,但它应该是从白色到橙色的渐变。
显然,当我在jsfiddle中运行我的代码时,它会显示出良好的结果。但是当我尝试在img标签中或直接在我的浏览器中显示SVG时,我得到了黑色背景。有什么想法吗?
我做错了什么或这是一个常见的问题?
感谢您的帮助。
答案 0 :(得分:2)
我认为问题在于:
<lineargradient id="gradient" x1="0%" y1="0%" x2="0%" y2="100%">
修正:
<linearGradient id="gradient" x1="0%" y1="0%" x2="0%" y2="100%">